- Jul 21, 2012
-
-
Akira Hatanaka authored
llvm-svn: 160599
-
Akira Hatanaka authored
llvm-svn: 160598
-
Akira Hatanaka authored
Test case will be added later when long branch patch is checked in. llvm-svn: 160597
-
Sean Callanan authored
to returned by expressions, by removing the __cxa_atexit call that would normally cause these objects to be destroyed. This also prevents many errors of the form Couldn't rewrite one of the arguments of a function call error: Couldn't materialize struct: Structure hasn't been laid out yet <rdar://problem/11309402> llvm-svn: 160596
-
Dmitri Gribenko authored
by index. This is useful if the user does not document all arguments, and we can't find a particular argument by index via :nth-of-type() CSS selector. llvm-svn: 160595
-
Howard Hinnant authored
llvm-svn: 160594
-
Howard Hinnant authored
llvm-svn: 160593
-
Howard Hinnant authored
llvm-svn: 160592
-
Jim Ingham authored
(lldb) file hello\ world correctly. <rdar://problem/11093911> llvm-svn: 160591
-
Chad Rosier authored
llvm-svn: 160590
-
Nuno Lopes authored
baby steps toward fixing some problems with inbound GEPs that overflow, as discussed 2 months ago or so. Make sure we do not emit index computations with NSW flags so that we dont get an undef value if the GEP overflows llvm-svn: 160589
-
Sean Callanan authored
branch address printing in the x86 disassembler. <rdar://problem/11925357> llvm-svn: 160588
-
Nuno Lopes authored
move the bounds checking pass to the instrumentation folder, where it belongs. I dunno why in the world I dropped it in the Scalar folder in the first place. No functionality change. llvm-svn: 160587
-
Tim Northover authored
Under AAPCS, long double is the same as double, which means it should be allowed as part of a homogeneous aggregate. llvm-svn: 160586
-
Howard Hinnant authored
llvm-svn: 160585
-
Benjamin Kramer authored
Remove unused private member variable uncovered by the recent changes to clang's -Wunused-private-field. llvm-svn: 160584
-
Benjamin Kramer authored
Remove unused private member variables uncovered by the recent changes to clang's -Wunused-private-field. llvm-svn: 160583
-
Dmitri Gribenko authored
llvm-svn: 160582
-
- Jul 20, 2012
-
-
Chad Rosier authored
llvm-svn: 160581
-
Chad Rosier authored
llvm-svn: 160580
-
Howard Hinnant authored
llvm-svn: 160579
-
Jim Ingham authored
Add "vAttachOrWait" to debugserver, so you can implement "attach to the process if it exists OR wait for it" without race conditions. Use that in lldb. llvm-svn: 160578
-
Dmitri Gribenko authored
HTML fragment. For testing, c-index-test now has even more output: * HTML rendering of a comment * comment AST tree dump in S-expressions like Comment::dump(), but implemented * with libclang APIs. llvm-svn: 160577
-
Galina Kistanova authored
llvm-svn: 160576
-
Jakob Stoklund Olesen authored
LiveRangeEdit::foldAsLoad() can eliminate a register by folding a load into its only use. Only do that when the load is safe to move, and it won't extend any live ranges. This fixes PR13414. llvm-svn: 160575
-
Chad Rosier authored
llvm-svn: 160574
-
Chad Rosier authored
assembly. By default, we don't emit IR for MS-style inline assembly (see r158833 as to why). This is strictly for testing purposes and should not be enabled with the expectation that things will work. This is a temporary flag and will be removed once MS-style inline assembly is fully supported. llvm-svn: 160573
-
Chandler Carruth authored
CI's name, and then used the StringRef pointing at its old name. I'm fixing it by storing the name in a std::string, and hoisting the renaming logic to happen always. This is nicer anyways as it will allow the upgraded IR to have the same names as the input IR in more cases. Another bug found by AddressSanitizer. Woot. llvm-svn: 160572
-
Jakob Stoklund Olesen authored
PHIElimination splits critical edges when it predicts it can resolve interference and eliminate copies. It doesn't split the edge if the interference wouldn't be resolved anyway because the phi-use register is live in the critical edge anyway. Teach PHIElimination to split loop exiting edges with interference, even if it wouldn't resolve the interference. This removes the necessary copies from the loop, which is still an improvement from injecting the copies into the loop. The test case demonstrates the improvement. Before: LBB0_1: cmpb $0, (%rdx) leaq 1(%rdx), %rdx movl %esi, %eax je LBB0_1 After: LBB0_1: cmpb $0, (%rdx) leaq 1(%rdx), %rdx je LBB0_1 movl %esi, %eax llvm-svn: 160571
-
Aaron Ballman authored
No longer assuming the number of prototype arguments is always less than the number of formal parameters for a variadic function call. llvm-svn: 160570
-
Dmitri Gribenko authored
The assertion was wrong in case we have a verbatim block without a closing command. Also add tests for closing command name in a verbatim block, since now it can be empty in such cases. llvm-svn: 160568
-
Benjamin Kramer authored
llvm-svn: 160567
-
Howard Hinnant authored
llvm-svn: 160566
-
Howard Hinnant authored
llvm-svn: 160565
-
Howard Hinnant authored
llvm-svn: 160564
-
Howard Hinnant authored
llvm-svn: 160563
-
Howard Hinnant authored
llvm-svn: 160562
-
Jordan Rose authored
This time, make sure we don't try to print fixits with newline characters, since they don't have a valid column width, and they don't look good anyway. PR13417 (and originally <rdar://problem/11877454>) llvm-svn: 160561
-
Jordan Rose authored
The CFG creates dummy DeclStmts with one Decl per statement, and it has to do so from last to first in order to build the graph correctly. llvm-svn: 160560
-
Daniel Dunbar authored
color. llvm-svn: 160559
-