summaryrefslogtreecommitdiffstats
path: root/llvm/test/FrontendC++
Commit message (Collapse)AuthorAgeFilesLines
...
* Reapply 79977.Devang Patel2009-08-281-5/+0
| | | | | | Use MDNodes to encode debug info in llvm IR. llvm-svn: 80406
* Revert 79977. It causes llvm-gcc bootstrap failures on some platforms.Devang Patel2009-08-261-0/+5
| | | | llvm-svn: 80073
* Remove obsolete -f flags.Dan Gohman2009-08-2536-36/+36
| | | | llvm-svn: 79992
* Update DebugInfo interface to use metadata, instead of special named ↵Devang Patel2009-08-251-5/+0
| | | | | | | | llvm.dbg.... global variables, to encode debugging information in llvm IR. This is mostly a mechanical change that tests metadata support very well. This change speeds up llvm-gcc by more then 6% at "-O0 -g" (measured by compiling InstructionCombining.cpp!) llvm-svn: 79977
* XFAIL this test since the fix was reverted.Duncan Sands2009-08-171-0/+1
| | | | llvm-svn: 79235
* Testcase for r78770.Bill Wendling2009-08-121-0/+13
| | | | llvm-svn: 78774
* XFAIL 2006-11-06-StackTrace.cpp on powerpc-apple-darwin9 until someone feelsDaniel Dunbar2009-08-071-2/+3
| | | | | | motivated to fix it. llvm-svn: 78406
* add a testcase for my llvm-gcc hack.Chris Lattner2009-08-061-0/+12
| | | | llvm-svn: 78289
* Add test for PR4678Rafael Espindola2009-08-041-0/+4
| | | | llvm-svn: 78040
* xfail for now.Evan Cheng2009-07-291-0/+1
| | | | llvm-svn: 77478
* Remove the IA-64 backend.Dan Gohman2009-07-243-3/+3
| | | | llvm-svn: 76920
* Re-apply 75490, 75806 and 76177 with fixes and tests. Efficiency comesDavid Greene2009-07-201-1/+0
| | | | | | next. llvm-svn: 76486
* xfail for now.Evan Cheng2009-07-201-0/+1
| | | | llvm-svn: 76423
* Emit line numbers in asm comments when available.David Greene2009-07-161-0/+27
| | | | llvm-svn: 76117
* this should be xfailed on darwin. Darwin doesn't use the libstdc++ in the ↵Chris Lattner2009-07-161-0/+1
| | | | | | llvm-gcc distro, it uses the system version. llvm-svn: 76095
* Add tests for fixes I committed earlier to the C++ FE.Rafael Espindola2009-07-162-0/+22
| | | | llvm-svn: 75924
* Mark this test as Darwin only. Patch by Bill Wendling.Stuart Hastings2009-07-061-1/+4
| | | | llvm-svn: 74829
* Insure that __block_holder_tmp is allocated on the stack when a byrefStuart Hastings2009-07-011-0/+8
| | | | | | variable is present. llvm-svn: 74610
* Testcase for (llvm-gcc) 73873. Usually Dale Johannesen2009-06-221-0/+32
| | | | | | | | std::pair<double, float*> is 16 bytes on darwin-powerpc, but not always. See testcase for full weirdness. llvm-svn: 73874
* Test for llvm-gcc patch 73564.Dale Johannesen2009-06-161-0/+10
| | | | llvm-svn: 73565
* Testcase for (llvm-gcc-4.2) 72442 (PR 4242).Dale Johannesen2009-05-261-0/+27
| | | | llvm-svn: 72443
* Check that pure/const functions are marked nounwind.Duncan Sands2009-05-041-0/+8
| | | | llvm-svn: 70875
* Second attempt:Bill Wendling2009-04-293-3/+3
| | | | | | | | | | | | Massive check in. This changes the "-fast" flag to "-O#" in llc. If you want to use the old behavior, the flag is -O0. This change allows for finer-grained control over which optimizations are run at different -O levels. Most of this work was pretty mechanical. The majority of the fixes came from verifying that a "fast" variable wasn't used anymore. The JIT still uses a "Fast" flag. I'll change the JIT with a follow-up patch. llvm-svn: 70343
* r70270 isn't ready yet. Back this out. Sorry for the noise.Bill Wendling2009-04-283-3/+3
| | | | llvm-svn: 70275
* Massive check in. This changes the "-fast" flag to "-O#" in llc. If you want toBill Wendling2009-04-283-3/+3
| | | | | | | | | | | use the old behavior, the flag is -O0. This change allows for finer-grained control over which optimizations are run at different -O levels. Most of this work was pretty mechanical. The majority of the fixes came from verifying that a "fast" variable wasn't used anymore. The JIT still uses a "Fast" flag. I'm not 100% sure if it's necessary to change it there... llvm-svn: 70270
* Testcase for 69795.Dale Johannesen2009-04-231-0/+15
| | | | llvm-svn: 69901
* Test case for revision 69683.Devang Patel2009-04-211-0/+32
| | | | llvm-svn: 69684
* These tests pass on linux.Duncan Sands2009-03-251-1/+1
| | | | llvm-svn: 67689
* These tests are now passing on Darwin because of r67139.Bill Wendling2009-03-182-1/+1
| | | | llvm-svn: 67215
* xfail these tests for now.Evan Cheng2009-03-182-0/+2
| | | | llvm-svn: 67143
* test case for rev. 67095.Devang Patel2009-03-171-0/+14
| | | | llvm-svn: 67096
* Fix test case. Now, llvm-gcc emits debug info for artificiaal variable ↵Devang Patel2009-03-131-4/+0
| | | | | | _comp_ctor. llvm-svn: 66963
* Temporarily XFAIL this test.Bill Wendling2009-03-131-0/+2
| | | | llvm-svn: 66866
* - Use the "Fast" flag instead of "OptimizeForSize" to determine whether to emitBill Wendling2009-02-242-2/+3
| | | | | | | | | | a DBG_LABEL or not. We want to fall back to the original way of emitting debug info when we're in -O0/-fast mode. - Add plumbing in to pass the "Fast" flag to places that need it. - XFAIL DebugInfo/deaddebuglabel.ll. This is finding 11 labels instead of 8. I need to investigate still. llvm-svn: 65367
* Un-XFAIL this test.Bill Wendling2009-02-241-1/+0
| | | | llvm-svn: 65355
* Temporarily XFAIL this test.Bill Wendling2009-02-191-0/+1
| | | | llvm-svn: 64987
* Testcase for rev. 64704Devang Patel2009-02-171-0/+12
| | | | llvm-svn: 64705
* Test case for llvm-gcc rev. 64648.Devang Patel2009-02-161-0/+5
| | | | llvm-svn: 64649
* testcase for r64049 of llvm-gcc.Chris Lattner2009-02-071-0/+7
| | | | llvm-svn: 64050
* Run dsymutil on darwin, when it is expected, before running gdb test.Devang Patel2009-02-021-0/+1
| | | | llvm-svn: 63548
* This passes on x86-32 linux at least.Duncan Sands2009-02-021-1/+0
| | | | llvm-svn: 63508
* Remove no-longer relevant comment. Pointed outDuncan Sands2009-01-221-1/+0
| | | | | | by Gabor. llvm-svn: 62765
* This passes on linux.Duncan Sands2009-01-221-1/+1
| | | | llvm-svn: 62764
* Use lightweight DebugInfo objects directly.Devang Patel2009-01-151-1/+0
| | | | llvm-svn: 62276
* xfail for now.Devang Patel2009-01-141-0/+1
| | | | llvm-svn: 62243
* the new scalarrepl changes are optimizing away a temporary alloca in Chris Lattner2009-01-081-41/+0
| | | | | | | | check242, which invalidates this test. This test is an x86-32 ABI test that is trying to be run in a target-independent way, which is not going to work very well. Just remove the test. llvm-svn: 61921
* This test works again for Darwin because a patch was reverted.Bill Wendling2008-12-191-4/+2
| | | | llvm-svn: 61254
* Re-XFAIL this test until debug stuff settles down.Bill Wendling2008-12-181-1/+4
| | | | llvm-svn: 61219
* XFAIL on Linux.Bill Wendling2008-12-181-1/+1
| | | | llvm-svn: 61176
* Do not XFAIL.Bill Wendling2008-12-181-1/+0
| | | | llvm-svn: 61174
OpenPOWER on IntegriCloud