- Oct 27, 2013
-
-
Timur Iskhodzhanov authored
llvm-svn: 193501
-
Benjamin Kramer authored
llvm-svn: 193500
-
Benjamin Kramer authored
llvm-svn: 193499
-
NAKAMURA Takumi authored
- Mark tests as XFAIL:cygming in test/ExecutionEngine/MCJIT/remote. Rather to suppress them, I'd like to leave them running as XFAIL. - Revert r193472. RecordMemoryManager no longer resolves __main on cygming. There are a couple of issues. - X86 Codegen emits "call __main" in @main for targeting cygming. It is useless in JIT. FYI, tests are passing when emitting __main is disabled. - Current remote JIT does not resolve any symbols in child context. FIXME: __main should be disabled, or remote JIT should resolve __main. llvm-svn: 193498
-
Elena Demikhovsky authored
Patch by Cameron McInally <cameron.mcinally@nyu.edu> llvm-svn: 193497
-
Bill Wendling authored
llvm-svn: 193496
-
Bill Wendling authored
Patch by Vassil Vassilev. PR13435 llvm-svn: 193495
-
Bill Wendling authored
PR14039 llvm-svn: 193494
-
Bill Wendling authored
llvm-svn: 193493
-
Bill Wendling authored
PR15447 llvm-svn: 193492
-
Bill Wendling authored
PR17608 llvm-svn: 193491
-
Bill Wendling authored
PR17608 llvm-svn: 193490
-
Shuxin Yang authored
llvm-svn: 193489
-
Jason Molenda authored
llvm-svn: 193488
-
Chandler Carruth authored
intended for debugging and diagnostic output), just inspect the spelling to check for specific prefixes in drectve section flags. In addition to being significantly cheaper and not relying on a debugging interface, this also avoids creating a temporary string and binding it to StringRef variable. We then went on to access it after the memory had been deallocated. This bug too was caught by ASan. I love ASan so much. =] llvm-svn: 193487
-
Chandler Carruth authored
More important than any performance concerns, the code was dropping the temporary string on the floor after assigning it to a StringRef, and then used the StringRef later. Caught by running the LLD tests under ASan. llvm-svn: 193486
-
- Oct 26, 2013
-
-
Alp Toker authored
Registered targets don't matter for Sema tests, this passes fine. llvm-svn: 193485
-
Rafael Espindola authored
llvm-svn: 193484
-
Shankar Easwaran authored
llvm-svn: 193483
-
Shankar Easwaran authored
llvm-svn: 193482
-
Shankar Easwaran authored
llvm-svn: 193481
-
Shankar Easwaran authored
llvm-svn: 193480
-
Shankar Easwaran authored
llvm-svn: 193479
-
Shankar Easwaran authored
llvm-svn: 193478
-
Shankar Easwaran authored
llvm-svn: 193477
-
Shankar Easwaran authored
On discussing this with Nick, it looks like the StubAtoms that contain a lazyImmediate reference kind should be null and the location needs to be fixed up later with some value that is an offset into the __LINKEDIT segment. The drawback is that it allows yaml files with references that expect a target to be considered without one. This results in bad yaml files that would need to be handled in the YAML Reader. Inorder to fix this, the Stub Atoms use a dummy target such as itself. llvm-svn: 193476
-
Daniel Jasper authored
Before: _versionLabel.text = [ NSString stringWithFormat:NSLocalizedString(@"version: %@", @"Label"), [NSBundle mainBundle].infoDictionary[@"CFBundleShortVersionString"] ]; After: _versionLabel.text = [NSString stringWithFormat:NSLocalizedString(@"version: %@", @"Label"), [NSBundle mainBundle].infoDictionary[@"CFBundleShortVersionString"]]; This fixed llvm.org/PR17695. llvm-svn: 193475
-
Alp Toker authored
llvm-svn: 193474
-
Alp Toker authored
The * could otherwise cause shell pathname expansion. llvm-svn: 193473
-
NAKAMURA Takumi authored
llvm-svn: 193472
-
Joerg Sonnenberger authored
so try PATH next. Assume it is sane enough to cover the usual system bash locations too, but the old list is not good enough for NetBSD. llvm-svn: 193471
-
Alexey Samsonov authored
llvm-svn: 193470
-
Benjamin Kramer authored
llvm-svn: 193469
-
Tobias Grosser authored
llvm-svn: 193468
-
Tobias Grosser authored
Polly can now be compiled without explicitly linking to GMP licensed code. This patch also contains some formatting improvements. llvm-svn: 193467
-
Tobias Grosser authored
llvm-svn: 193466
-
Alp Toker authored
If multiprocessing was requested, detected as available and subsequently failed to initialize it's worth letting the user know about it before falling back to threads. This condition can arise in certain OpenBSD / FreeBSD Python versions. llvm-svn: 193465
-
Alp Toker authored
Some versions of Python on the builders seem strict about this. llvm-svn: 193464
-
Alp Toker authored
This should be a better fix for lit multiprocessing failures, replacing the OpenBSD and FreeBSD workarounds in r193413 and r193457. Reference: http://bugs.python.org/issue3770 llvm-svn: 193463
-
David Majnemer authored
Sema: Emit a nicer diagnostic when IndirectFieldDecls show up inappropriately in non-type template arguments llvm-svn: 193462
-