- Aug 01, 2011
-
-
Johnny Chen authored
rdar://problem/9673664 llvm-svn: 136633
-
Sean Callanan authored
scratch AST context before attempting to parse. llvm-svn: 136631
-
Akira Hatanaka authored
llvm-svn: 136630
-
Sean Callanan authored
treated as externals, causing problems when we tried to look their locations up in the debug info. For example: expr char c[] = "foo"; c[0] would terminate when trying to find c in the debug information, despite the fact that c was defined inside the expression. llvm-svn: 136629
-
David Chisnall authored
llvm-svn: 136628
-
Greg Clayton authored
llvm-svn: 136626
-
Greg Clayton authored
plug-in folder. llvm-svn: 136625
-
Douglas Gregor authored
Move the serialization of the MODULE_OFFSET_MAP out of the source-manager-writing code and into the general chained-PCH writing code llvm-svn: 136624
-
Richard Osborne authored
llvm-svn: 136623
-
Sean Callanan authored
llvm-svn: 136622
-
Douglas Gregor authored
Update CMake target names for tablegen-generated data in the X86 and ARM targets. This should fix the CMake build with MSVC. llvm-svn: 136621
-
Douglas Gregor authored
Rename the AST file's SOURCE_LOCATION_MAP to MODULE_OFFSET_MAP, to indicate the greater role it will soon play in remapping. llvm-svn: 136619
-
Jakub Staszak authored
llvm-svn: 136618
-
Jay Foad authored
llvm-svn: 136612
-
Jay Foad authored
llvm-svn: 136611
-
Jay Foad authored
llvm-svn: 136610
-
Jay Foad authored
llvm-svn: 136609
-
Jay Foad authored
accordingly. llvm-svn: 136608
-
Greg Clayton authored
llvm-svn: 136606
-
Chandler Carruth authored
them properly. Specifically, the disassembler clearly attempts to initialiaze all TargetInfo, MCTargeDesc, AsmParser, and Disassembler sublibraries of registered targets. This makes the CMakeLists accurately reflect this intent in the code. This should fix the last of the link errors that I have gotten reports of on OS X, but if anyone continues to see link errors, continue to pester me and I'll look into it. llvm-svn: 136603
-
- Jul 31, 2011
-
-
-
Howard Hinnant authored
llvm-svn: 136597
-
Howard Hinnant authored
llvm-svn: 136596
-
-
Bill Wendling authored
llvm-svn: 136591
-
Bill Wendling authored
llvm-svn: 136590
-
Bill Wendling authored
This adds the 'resume' instruction class, IR parsing, and bitcode reading and writing. The 'resume' instruction resumes propagation of an existing (in-flight) exception whose unwinding was interrupted with a 'landingpad' instruction (to be added later). llvm-svn: 136589
-
Jakub Staszak authored
llvm-svn: 136588
-
Jakub Staszak authored
llvm-svn: 136587
-
Jakub Staszak authored
it to RHS anyway. llvm-svn: 136586
-
Rafael Espindola authored
llvm-svn: 136585
-
Jakob Stoklund Olesen authored
llvm-svn: 136584
-
Jakub Staszak authored
decide whether condition is likely to be true this way: x == 0 -> false x < 0 -> false x <= 0 -> false x != 0 -> true x > 0 -> true x >= 0 -> true llvm-svn: 136583
-
Benjamin Kramer authored
llvm-svn: 136582
-
Benjamin Kramer authored
llvm-svn: 136581
-
Peter Collingbourne authored
Fixes non-__APPLE__ build. Patch by Matt Johnson! llvm-svn: 136580
-
Greg Clayton authored
work to be done. llvm-svn: 136579
-
Greg Clayton authored
llvm-svn: 136578
-
- Jul 30, 2011
-
-
Chandler Carruth authored
This was checked in without review. It is not clear its reasonable to include with libc++ at all, and needs discussion at a highlevel before moving forward. It's also completely lacking tests, and included several bugs in the implementation. llvm-svn: 136577
-
Chandler Carruth authored
Original change: Destruct elements of hash tables when removing individual entries from the hash_table. I think this is the correct solution to PR10507, but I'm not sure since this is a little bit cargo-culted. Howard, please review. llvm-svn: 136576
-