- Nov 23, 2012
-
-
Craig Topper authored
llvm-svn: 168524
-
Daniel Malea authored
- Handle EINVAL return code from ptrace(GETSIGINFO, ...): not an error, but 'group-stop' state on Linux - propagate SIGSTOP to inferior in above case - this commit resolves the failure in expression_command/timeout testcase Thanks to Sean Callanan & Matt Kopec for helping debug this problem llvm-svn: 168523
-
Rafael Espindola authored
it will expand any .cfi_* directives in the input assembly. Unfortunately this cannot replace elf-dump in tests as the asm streamer cannot relax the line advance opcodes. llvm-svn: 168522
-
Benjamin Kramer authored
Fixes PR13758. llvm-svn: 168521
-
Rafael Espindola authored
Roman Divacky. I just added the testcase. llvm-svn: 168520
-
Rafael Espindola authored
"clang -cc1 -fsyntax-only" on the preprocessed output of #define M extern int a; #define M2 M M #define M4 M2 M2 #define M8 M4 M4 #define M16 M8 M8 #define M32 M16 M16 #define M64 M32 M32 #define M128 M64 M64 #define M256 M128 M128 #define M512 M256 M256 #define M1024 M512 M512 #define M2048 M1024 M1024 #define M4096 M2048 M2048 #define M8192 M4096 M4096 #define M16384 M8192 M8192 M16384 goes from 2.994s to 1.416s. GCC is at 0.022s, so we still have a long way to go. llvm-svn: 168519
-
Dmitry Vyukov authored
llvm-svn: 168518
-
Kostya Serebryany authored
[asan] get rid of some of the uses of kPageSize. The intent is to get rid of it completely to support platforms with multiple possible page sizes. llvm-svn: 168517
-
Patrik Hägglund authored
Update some test cases accordingly. llvm-svn: 168516
-
Rafael Espindola authored
llvm-svn: 168515
-
Rafael Espindola authored
Decl::isUsed checks the attribute. If the function had a body just the check is DeclMustBeEmitted would be sufficient. llvm-svn: 168514
-
Alexey Samsonov authored
llvm-svn: 168513
-
Bill Wendling authored
llvm-svn: 168512
-
Joey Gouly authored
llvm-svn: 168511
-
Joey Gouly authored
llvm-svn: 168510
-
Alexey Samsonov authored
llvm-svn: 168509
-
Alexey Samsonov authored
llvm-svn: 168508
-
Patrik Hägglund authored
llvm-svn: 168507
-
Dmitry Vyukov authored
llvm-svn: 168506
-
Bob Wilson authored
Unlike my previous attempt at this, this patch leaves intact the check for whether clang can handle the input file type, and for non-Darwin toolchains it will invoke gcc for things it cannot handle. For Darwin toolchains, the behavior reported in pr14338 still occurs with this patch, but that is a definite improvement from what happens currently, where it just crashes with an assertion failure. llvm-svn: 168505
-
- Nov 22, 2012
-
-
Venkatraman Govindaraju authored
llvm-svn: 168504
-
Daniel Malea authored
- StopMonitor() is called anyways from ProcessMonitor destructor later - resolves hang in TestEvents.py Patch by Matt Kopec! llvm-svn: 168503
-
Rafael Espindola authored
llvm-svn: 168502
-
Meador Inge authored
I discovered a few more missing functions while migrating optimizations from the simplify-libcalls pass to the instcombine (I already added some in r167659). llvm-svn: 168501
-
Benjamin Kramer authored
llvm-svn: 168500
-
NAKAMURA Takumi authored
llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp: Prune AddressSanitizerCreateGlobalRedzonesPass::ID. [-Wunused-variable] llvm-svn: 168499
-
Eli Bendersky authored
llvm-svn: 168498
-
Dmitry Vyukov authored
llvm-svn: 168497
-
Dmitry Vyukov authored
llvm-svn: 168496
-
NAKAMURA Takumi authored
IntelJITEventsWrapper.h: Prune two members, FinalizeThreadFunc and FinalizeProcessFunc, for now. [-Wunused-private-field] llvm-svn: 168495
-
Dmitri Gribenko authored
llvm-svn: 168493
-
Chandler Carruth authored
dead. Patch by Stephan Falke. llvm-svn: 168492
-
Dmitry Vyukov authored
llvm-svn: 168491
-
Ted Kremenek authored
llvm-svn: 168490
-
Lang Hames authored
isOperationLegal. Thanks to Craig Topper for pointing this out. llvm-svn: 168485
-
Kostya Serebryany authored
[asan] rip off the creation of global redzones from the main AddressSanitizer class into a separate class. The intent is to make it a separate ModulePass in the following commmits llvm-svn: 168484
-
Eric Christopher authored
llvm-svn: 168481
-
Richard Smith authored
specified as a qualified name. llvm-svn: 168479
-
Richard Smith authored
and defined within the current instantiation, but which are not part of the current instantiation. Previously, it would look at bases which could be specialized separately from the current template. llvm-svn: 168477
-
Richard Smith authored
non-trivial special members for varargs calls. llvm-svn: 168476
-