"clang/LICENSE.TXT" did not exist on "7cd7aeee9a82e00e8ca67668e525a5f103d607a4"
- May 26, 2012
-
-
Benjamin Kramer authored
Negative cycles are filtered out earlier. llvm-svn: 157514
-
Duncan Sands authored
which operands come flying out of the linearization stage. llvm-svn: 157512
-
Richard Smith authored
-Wsometimes-uninitialized diagnostics to make it clearer that the cause of the issue may be a condition which must always evaluate to true or false, rather than an uninitialized variable. To emphasize this, add a new note with a fixit which removes the impossible condition or replaces it with a constant. Also, downgrade the diagnostic from -Wsometimes-uninitialized to -Wconditional-uninitialized when it applies to a range-based for loop, since the condition is not written explicitly in the code in that case. llvm-svn: 157511
-
David Blaikie authored
llvm-svn: 157510
-
Alexander Kornienko authored
switch label immediately followed by a 'break;'. llvm-svn: 157508
-
Johnny Chen authored
Make 'help arch' return the list of supported architectures. Add a convenience method StringList::Join(const char *separator) which is called from the help function for 'arch'. Also add a simple test case. llvm-svn: 157507
-
Jim Ingham authored
llvm-svn: 157506
-
Bill Wendling authored
are passed in. However, those arguments may be in a write-protected area, as far as the runtime library is concerned. For instance, the data could be placed into a 'linkedit' section, which isn't writable. Emit the code from llvm_gcda_increment_indirect_counter directly into the function instead. Note: The code for this is ugly, and can lead to bloat. We should look into simplifying this code instead of having all of these branches. <rdar://problem/11181370> llvm-svn: 157505
-
Akira Hatanaka authored
Benjamin Kramer. llvm-svn: 157504
-
Howard Hinnant authored
The rules for emplace in map, multimap, unordered_map and unordered_multimap changed a while back and I'm just now updating to these new rules. In a nutshell, you've got to know you're emplacing to a pair and use one of pair's constructors. I made one extension: If you want to emplace the key and default construct the mapped_type, you can just emplace(key), as opposed to emplace(piecewise_construct, forward_as_tuple(key), forward_as_tuple()). llvm-svn: 157503
-
- May 25, 2012
-
-
Bill Wendling authored
llvm-svn: 157502
-
Bill Wendling authored
llvm-svn: 157501
-
Nuno Lopes authored
add test case for C++ codegen llvm-svn: 157500
-
Nuno Lopes authored
llvm-svn: 157498
-
Johnny Chen authored
Allow setting conditions inline with breakpoints. Add test cases. llvm-svn: 157497
-
Akira Hatanaka authored
llvm-svn: 157496
-
Akira Hatanaka authored
Delete MipsExpandPseudo. llvm-svn: 157495
-
Akira Hatanaka authored
llvm-svn: 157494
-
Akira Hatanaka authored
llvm-svn: 157493
-
Akira Hatanaka authored
llvm-svn: 157492
-
Argyrios Kyrtzidis authored
llvm-svn: 157491
-
Sean Callanan authored
entity imported by the ASTImporter had a NamedDecl with a name that wasn't a plain string (e.g., a selector). llvm-svn: 157488
-
rdar://problem/11535465Greg Clayton authored
LC_ENCRYPTION_INFO with "cryptid == 0" is not actually encrypted and LLDB fails to read memory from file. llvm-svn: 157487
-
Rafael Espindola authored
method template. llvm-svn: 157486
-
Justin Holewinski authored
NV_CONTRIB llvm-svn: 157485
-
rdar://problem/11534686Greg Clayton authored
Reading memory from a file when the section is encrypted doesn't show an error. No we do. llvm-svn: 157484
-
Nuno Lopes authored
llvm-svn: 157483
-
Greg Clayton authored
Fixed an issue where we might have easy access to the string table data for a mach file from memory even though we have a process. So now we don't read the string table strings from memory when we don't have to. llvm-svn: 157482
-
Nuno Lopes authored
add support for select add experimental support for alloc_size metadata llvm-svn: 157481
-
Rafael Espindola authored
function template. llvm-svn: 157480
-
Justin Holewinski authored
to pass around a struct instead of a large set of individual values. This cleans up the interface and allows more information to be added to the struct for future targets without requiring changes to each and every target. NV_CONTRIB llvm-svn: 157479
-
Anna Zaks authored
llvm-svn: 157478
-
Alexander Potapenko authored
llvm-svn: 157477
-
Howard Hinnant authored
llvm-svn: 157476
-
Rafael Espindola authored
the visibility. llvm-svn: 157475
-
NAKAMURA Takumi authored
test/CodeGen/X86/bigstructret.ll: Suppress one test. It is msvc-incompatible. (compatible to mingw32 and netbsd, though) llvm-svn: 157474
-
Alexander Potapenko authored
llvm-svn: 157473
-
Alexander Potapenko authored
When the flag is set to zero, we do not check for errors in malloc_usable_size. This may be useful to work around a bug in Nvidia drivers prior to 295.* llvm-svn: 157472
-
NAKAMURA Takumi authored
test/CodeGen/X86/bigstructret.ll: Relax stack offsets for hosts of stack-align=8, eg. win32 and netbsd. llvm-svn: 157471
-
Rafael Espindola authored
Similar fixes for function and member template to follow as I write the testcases. llvm-svn: 157470
-