- Dec 09, 2010
-
-
Douglas Gregor authored
declaration that is a value in ill-formed code. Instead of crashing, treat this as a dependent typename specifier and suggest that the using add "typename" into the using declaration. Fixes <rdar://problem/8740998>. llvm-svn: 121322
-
Ted Kremenek authored
llvm-svn: 121321
-
-
Jakob Stoklund Olesen authored
llvm-svn: 121319
-
Ted Kremenek authored
DenseMap-backed hashtable for doing client-side management of CXCursors within a set. llvm-svn: 121318
-
Jason W Kim authored
llvm-svn: 121317
-
Eric Christopher authored
support. llvm-svn: 121316
-
Jim Grosbach authored
for more thorough cleanup. llvm-svn: 121315
-
Jim Grosbach authored
llvm-svn: 121314
-
Jason W Kim authored
llvm-svn: 121313
-
Jason W Kim authored
Added test to check bl __aeabi_read_tp gets emitted properly for ELF/ASM as well as ELF/OBJ (including fixup) Also added support for ELF::R_ARM_TLS_IE32 llvm-svn: 121312
-
Jim Grosbach authored
llvm-svn: 121311
-
-
-
Bill Wendling authored
llvm-svn: 121308
-
Evan Cheng authored
llvm-svn: 121307
-
- Dec 08, 2010
-
-
Jakob Stoklund Olesen authored
The hint is simply tried first and then forgotten if it couldn't be allocated immediately. llvm-svn: 121306
-
-
Devang Patel authored
llvm-svn: 121302
-
Jim Grosbach authored
multiply instructions. llvm-svn: 121301
-
Bob Wilson authored
Remove the "splat" parameter from the EmitNeonCall function, since it is no longer needed. llvm-svn: 121300
-
Bob Wilson authored
so they can be implemented without separate clang builtins. llvm-svn: 121299
-
Francois Pichet authored
llvm-svn: 121298
-
-
Greg Clayton authored
used as the arguments for the inferior program. So for example you can do % lldb /bin/ls /tmp ~/Documents And "lldb" will use "/bin/ls" as the program and send arguments "/tmp" and "~/Documents" as the launch args. If you specify a file, then all remaining args after option parsing will be used for program arguments: % lldb -f /bin/ls /tmp ~/Documents If you need to pass option values to your inferior program, just terminate the "lldb" command line driver options with "--": % lldb -- /bin/ls -AFl /tmp The arguments are placed into the "settings" variable named "target.process.run-args". This allows you to just run the program using "process launch" and, if no args are specified on that command, the "target.process.run-args" values will be used: % lldb -- /bin/ls -AFl /tmp Current executable set to '/bin/ls' (x86_64). (lldb) settings show target.process.run-args target.process.run-args (array): [0]: '-AFl' [1]: '/tmp' (lldb) (lldb) r Process 56753 launched: '/bin/ls' (x86_64) lrwxr-xr-x@ 1 root wheel 11 Nov 19 2009 /tmp@ -> private/tmp llvm-svn: 121295
-
Jakob Stoklund Olesen authored
abstract priority queue interface in subclasses that want to override the priority calculations. Subclasses must provide a getPriority() implementation instead. This approach requires less code as long as priorities are expressable as simple floats, and it avoids the dangers of defining potentially expensive priority comparison functions. It also should speed up priority_queue operations since they no longer have to chase pointers when comparing registers. This is not measurable, though. Preferably, we shouldn't use floats to guide code generation. The use of floats here is derived from the use of floats for spill weights. Spill weights have a dynamic range that doesn't lend itself easily to a fixpoint implementation. When someone invents a stable spill weight representation, it can be reused for allocation priorities. llvm-svn: 121294
-
Eric Christopher authored
llvm-svn: 121293
-
Lang Hames authored
llvm-svn: 121292
-
Jim Grosbach authored
for the source field when it's the whole thing that's being referenced. llvm-svn: 121291
-
Douglas Gregor authored
keyword occurs outside of a template" diagnostics under -WC++0x-extensions. llvm-svn: 121290
-
Devang Patel authored
llvm-svn: 121289
-
Bob Wilson authored
llvm-svn: 121288
-
Bob Wilson authored
llvm-svn: 121287
-
Bob Wilson authored
llvm-svn: 121286
-
Eric Christopher authored
llvm-svn: 121285
-
-
Jakob Stoklund Olesen authored
llvm-svn: 121283
-
Howard Hinnant authored
llvm-svn: 121282
-
Devang Patel authored
llvm-svn: 121281
-
Jim Grosbach authored
ordering of thumb mode. llvm-svn: 121280
-