summaryrefslogtreecommitdiffstats
path: root/llvm/test/FrontendC++
Commit message (Collapse)AuthorAgeFilesLines
* This test dates from the time when llvm-gcc had problems if two types wereDuncan Sands2010-12-021-12/+0
| | | | | | | | | | | named the same, so it had to qualify type names according to the enclosing scope to ensure uniqueness. This is no longer needed for correctness (though it may be helpful when reading the IR), so this test has lost its importance. Zap it because dragonegg will never be able to produce the qualified type name since modern gcc zaps language specific info (such as whether a type is nested inside another - needed to get X::Y here) before dragonegg is reached. llvm-svn: 120721
* Remove explicit uses of -emit-llvm, the test infrastructure adds itDuncan Sands2010-11-2547-63/+63
| | | | | | | | automatically. Use -S with llvm-gcc rather than -c, so tests can work when llvm-gcc is really dragonegg (which can output IR with -S but not -c). llvm-svn: 120160
* Judging from the comment, the system assembler is supposed to assembleDuncan Sands2010-11-251-1/+1
| | | | | | | | the output of this test. Since it was producing bitcode, that clearly wasn't happening! Have it produce target assembler and assemble that instead. llvm-svn: 120159
* Generalize DISubprogram element to encode various flags instead of just one ↵Devang Patel2010-09-291-2/+2
| | | | | | | | boolean for isArtificial. This is a backword compatible change. llvm-svn: 115084
* Reapply r112623. Included additional check for unused byval argument.Devang Patel2010-08-311-0/+53
| | | | llvm-svn: 112659
* Revert r112623. It is causing self host build failures.Devang Patel2010-08-311-53/+0
| | | | llvm-svn: 112631
* Remember byval argument's frame index during argument lowering and use this ↵Devang Patel2010-08-311-0/+53
| | | | | | | | info to emit debug info. Fixes Radar 8367011. llvm-svn: 112623
* Update tests to not rely on input file's absolute path.Devang Patel2010-07-272-3/+3
| | | | llvm-svn: 109521
* Test case to insure template function declaration refers to correct ↵Stuart Hastings2010-07-231-0/+86
| | | | | | filename. Radar 8063111. llvm-svn: 109258
* Testcase for 108732 (8195660).Dale Johannesen2010-07-191-0/+21
| | | | llvm-svn: 108733
* Less incorrect handling of zero-length bitfields. Radars 7992077 and 8093043.Stuart Hastings2010-06-232-0/+25
| | | | llvm-svn: 106611
* Corresponding test changes for r106564.Bill Wendling2010-06-221-4/+4
| | | | llvm-svn: 106569
* test case for r106438.Devang Patel2010-06-211-0/+13
| | | | llvm-svn: 106439
* Support for nested functions/classes in debug output. (Again.) Radar 7424645.Stuart Hastings2010-06-111-1/+3
| | | | llvm-svn: 105828
* Tweak test for debug/metadata change, update to FileCheck. Radar 7424645.Stuart Hastings2010-06-071-2/+3
| | | | llvm-svn: 105559
* Revert 105492 & 105493 due to a testcase regression. Radar 7424645.Stuart Hastings2010-06-051-3/+1
| | | | llvm-svn: 105511
* Support for nested functions/classes in debug output. Radar 7424645.Stuart Hastings2010-06-041-1/+3
| | | | llvm-svn: 105492
* Revert 104841, 104842, 104876 due to buildbot failures. Radar 7424645.Stuart Hastings2010-05-281-3/+1
| | | | llvm-svn: 104953
* Support for nested functions/classes in debug output. Radar 7424645.Stuart Hastings2010-05-271-1/+3
| | | | llvm-svn: 104841
* Match "4" or "8" depending upon if it's 32- or 64-bit.Bill Wendling2010-05-201-2/+2
| | | | llvm-svn: 104196
* Testcase for r104181.Bill Wendling2010-05-191-0/+33
| | | | llvm-svn: 104182
* Test case for r103633.Devang Patel2010-05-121-0/+17
| | | | llvm-svn: 103634
* Testcase for llvm 103572 (7898991).Dale Johannesen2010-05-121-0/+31
| | | | llvm-svn: 103574
* Test case for 103414.Devang Patel2010-05-101-0/+43
| | | | llvm-svn: 103415
* Revert r102948.Bill Wendling2010-05-031-32/+0
| | | | llvm-svn: 102964
* Testcase for r102947.Bill Wendling2010-05-031-0/+32
| | | | llvm-svn: 102948
* New test.Devang Patel2010-04-301-0/+17
| | | | llvm-svn: 102746
* Add -o /dev/null to some tests which don't care about their output.Dan Gohman2010-04-302-2/+2
| | | | llvm-svn: 102722
* Reverting 100530 & 100531 due to regressions in the GDB test suite.Stuart Hastings2010-04-061-3/+1
| | | | llvm-svn: 100563
* Revise debug info machinery to digest nested functions and classes.Stuart Hastings2010-04-061-1/+3
| | | | | | | | | | | A certain GDB testsuite case (local.cc) has a function nested inside a class nested inside another function. GCC presents the innermost function to llvm-convert first. Heretofore, the debug info mistakenly placed the inner function at module scope. This patch walks the GCC context links and instantiates the outer class and function so the debug info is properly nested. Radar 7426545. llvm-svn: 100530
* Test case for llvm-gcc r99305. Radar 7659636.Stuart Hastings2010-03-231-0/+134
| | | | llvm-svn: 99306
* Chris pointed out that producing undef here is wrong inDuncan Sands2010-03-161-11/+0
| | | | | | general. llvm-svn: 98649
* Check that P is not zero initialized.Duncan Sands2010-03-161-0/+11
| | | | llvm-svn: 98627
* Start using DIFile. See updated SourceLevelDebugging.html for more information.Devang Patel2010-03-091-1/+1
| | | | | | | | | This patch updates LLVMDebugVersion to 8. Debug info descriptors encoded using LLVMDebugVersion 7 is supported. Corresponding llvmgcc and clang FE commits are required. llvm-svn: 98020
* Ignore target dependent value in grep search.Devang Patel2010-02-181-1/+1
| | | | llvm-svn: 96604
* New test case for r96543.Devang Patel2010-02-181-0/+14
| | | | llvm-svn: 96544
* Revert:Eric Christopher2010-02-171-16/+0
| | | | | | | | | | r95605 | dpatel | 2010-02-08 15:27:46 -0800 (Mon, 08 Feb 2010) | 2 lines test case for r95604. Which was the testcase for the patch reverted from llvm-gcc. llvm-svn: 96474
* test case for r95604.Devang Patel2010-02-081-0/+16
| | | | llvm-svn: 95605
* Debugging is now reenabled on PPC darwin, so reenableDale Johannesen2010-02-031-3/+1
| | | | | | these tests (they pass). llvm-svn: 95263
* this test has been failing or a long time, just disable it for now to getChris Lattner2010-01-241-5/+5
| | | | | | back to green. llvm-svn: 94371
* Testcase for llvm-gcc checkin 92108.Dale Johannesen2009-12-241-0/+16
| | | | llvm-svn: 92110
* XFAIL these tests on powerpc, under the assumption that no one cares. If you ↵Daniel Dunbar2009-12-211-0/+1
| | | | | | care, feel free to fix. llvm-svn: 91826
* Fix this code to use DIScope instead of DICompileUnit, as in r90181.Dan Gohman2009-12-051-1/+1
| | | | | | | Don't print "SrcLine"; just print the filename and line number, which is obvious enough and more informative. llvm-svn: 90631
* Remove now-redundant llvm-as invocations.Dan Gohman2009-12-054-4/+4
| | | | llvm-svn: 90626
* Add testcase for PR4262.Bill Wendling2009-12-041-0/+17
| | | | llvm-svn: 90623
* Debug info is disabled on PPC Darwin.Bill Wendling2009-11-302-1/+6
| | | | llvm-svn: 90160
* Test for llvm-gcc checkin 89898.Dale Johannesen2009-11-251-0/+17
| | | | llvm-svn: 89899
* Not all ASM has # for comments.Bill Wendling2009-11-181-1/+1
| | | | llvm-svn: 89250
* Move DebugInfo checks into EmitComments and remove them fromDavid Greene2009-11-131-1/+0
| | | | | | | | target-specific AsmPrinters. Not all comments need DebugInfo. Re-enable the line numbers comment test. llvm-svn: 88697
* Reenable StackTracke.cpp test.Devang Patel2009-11-111-1/+1
| | | | llvm-svn: 86861
OpenPOWER on IntegriCloud