| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Test case for annotate builtin. | Tanya Lattner | 2008-02-12 | 1 | -0/+7 |
| | | | | | llvm-svn: 46999 | ||||
| * | Pointers change size depending upon the target. Remove them to make the test ↵ | Tanya Lattner | 2008-01-30 | 1 | -3/+1 |
| | | | | | | | more stable. llvm-svn: 46548 | ||||
| * | Update this test case. | Evan Cheng | 2008-01-29 | 1 | -2/+10 |
| | | | | | llvm-svn: 46526 | ||||
| * | After recent changes we fail to optimize this test | Duncan Sands | 2008-01-29 | 1 | -19/+0 |
| | | | | | | | | sufficiently to have it pass. I'm removing it from the testsuite and adding it to PR452 instead. llvm-svn: 46492 | ||||
| * | New test. | Devang Patel | 2008-01-29 | 1 | -0/+24 |
| | | | | | llvm-svn: 46479 | ||||
| * | Add test to make sure that #pragma mark/error doesn't error if there are | Bill Wendling | 2008-01-29 | 1 | -0/+6 |
| | | | | | | | unbalanced quotes. llvm-svn: 46476 | ||||
| * | Pure/const functions with ByVal parameters cannot | Duncan Sands | 2008-01-28 | 1 | -5/+10 |
| | | | | | | | be marked readonly either. llvm-svn: 46456 | ||||
| * | Make this more likely to be passed byval. | Duncan Sands | 2008-01-28 | 1 | -1/+1 |
| | | | | | llvm-svn: 46451 | ||||
| * | Move testcase to the code gen directory. | Bill Wendling | 2008-01-26 | 1 | -7/+0 |
| | | | | | llvm-svn: 46395 | ||||
| * | Create an explicit copy for byval parameters even | Duncan Sands | 2008-01-26 | 1 | -0/+19 |
| | | | | | | | when inlining a readonly function. llvm-svn: 46393 | ||||
| * | If we have a function like this: | Bill Wendling | 2008-01-26 | 1 | -0/+7 |
| | | | | | | | | | | | | | | | | | | | | | | | void bork() { int *address = 0; *address = 0; } It's compiled into LLVM code that looks like this: define void @bork() noreturn nounwind { entry: unreachable } This is bad on some platforms (like PPC) because it will generate the label for the function but no body. The label could end up being associated with some non-code related stuff, like a section. This places a "trap" instruction if the SimplifyCFG pass removed all code from the function leaving only one "unreachable" instruction. llvm-svn: 46387 | ||||
| * | Add another testcase. | Devang Patel | 2008-01-26 | 1 | -0/+8 |
| | | | | | llvm-svn: 46385 | ||||
| * | New test case. | Evan Cheng | 2008-01-26 | 1 | -0/+23 |
| | | | | | llvm-svn: 46382 | ||||
| * | add a testcase for a bug Duncan pointed out. | Chris Lattner | 2008-01-25 | 1 | -0/+10 |
| | | | | | llvm-svn: 46372 | ||||
| * | New test. | Devang Patel | 2008-01-24 | 1 | -0/+6 |
| | | | | | llvm-svn: 46333 | ||||
| * | New test. | Devang Patel | 2008-01-21 | 1 | -0/+5 |
| | | | | | llvm-svn: 46220 | ||||
| * | New test. | Devang Patel | 2008-01-21 | 1 | -0/+7 |
| | | | | | llvm-svn: 46209 | ||||
| * | Check that nested functions don't get pointless | Duncan Sands | 2008-01-13 | 1 | -0/+3 |
| | | | | | | | static chains. llvm-svn: 45936 | ||||
| * | Testcase for PR1721 | Chris Lattner | 2008-01-08 | 1 | -0/+11 |
| | | | | | llvm-svn: 45739 | ||||
| * | Testcase for PR1386. | Duncan Sands | 2008-01-04 | 1 | -0/+13 |
| | | | | | llvm-svn: 45583 | ||||
| * | Strengthening this test so it fails in release mode. | Gordon Henriksen | 2007-12-30 | 1 | -0/+1 |
| | | | | | llvm-svn: 45446 | ||||
| * | Testcase for preceding FE fix | Dale Johannesen | 2007-12-18 | 1 | -0/+18 |
| | | | | | llvm-svn: 45144 | ||||
| * | Make instcombine promote inline asm calls to 'nounwind' | Duncan Sands | 2007-12-16 | 1 | -0/+3 |
| | | | | | | | | | | | | | | calls. Remove special casing of inline asm from the inliner. There is a potential problem: the verifier rejects invokes of inline asm (not sure why). If an asm call is not marked "nounwind" in some .ll, and instcombine is not run, but the inliner is run, then an illegal module will be created. This is bad but I'm not sure what the best approach is. I'm tempted to remove the check in the verifier... llvm-svn: 45073 | ||||
| * | Use not instead of ignore when an exit status is expected to always | Dan Gohman | 2007-12-11 | 1 | -1/+1 |
| | | | | | | | be non-zero. llvm-svn: 44866 | ||||
| * | New testcase for PR1744 | Chris Lattner | 2007-11-28 | 1 | -0/+8 |
| | | | | | llvm-svn: 44418 | ||||
| * | Fix bug in regression tests that ignored stderr output in RUN lines. Updated ↵ | Tanya Lattner | 2007-11-28 | 2 | -2/+2 |
| | | | | | | | | | tests and fixed broken run lines. XFAILed 3 arm regressions (will file bugs) llvm-svn: 44389 | ||||
| * | Add testcase for last llvm-gcc tweaks | Anton Korobeynikov | 2007-11-27 | 1 | -0/+12 |
| | | | | | llvm-svn: 44368 | ||||
| * | Make this pass for CYGWIN. | Zhou Sheng | 2007-11-27 | 1 | -1/+2 |
| | | | | | llvm-svn: 44354 | ||||
| * | Make this testcase compatible with CYGWIN. | Zhou Sheng | 2007-11-27 | 1 | -1/+5 |
| | | | | | llvm-svn: 44353 | ||||
| * | Un XFAIL these tests, now that Bill has backported | Duncan Sands | 2007-11-14 | 2 | -2/+0 |
| | | | | | | | the fix from 4.2. llvm-svn: 44115 | ||||
| * | XFAIL these tests until the fix gets backported | Duncan Sands | 2007-11-14 | 2 | -0/+2 |
| | | | | | | | from llvm-gcc-4.2 to 4.0. llvm-svn: 44103 | ||||
| * | Check that the first and third characters, s and u, | Duncan Sands | 2007-11-09 | 1 | -0/+3 |
| | | | | | | | are accessed with an alignment of 2 not 1. llvm-svn: 43932 | ||||
| * | Check that accesses to the second short, t, have | Duncan Sands | 2007-11-09 | 1 | -0/+3 |
| | | | | | | | an alignment of 2 rather than 4. llvm-svn: 43931 | ||||
| * | Add testcase | Bill Wendling | 2007-11-07 | 1 | -0/+4 |
| | | | | | llvm-svn: 43839 | ||||
| * | New test. | Devang Patel | 2007-10-30 | 1 | -0/+6 |
| | | | | | llvm-svn: 43527 | ||||
| * | Test to make sure that if we have an unaligned memcpy, it will still compile. | Bill Wendling | 2007-10-26 | 1 | -0/+5 |
| | | | | | llvm-svn: 43412 | ||||
| * | Testcase for PR 1397. | Dale Johannesen | 2007-10-25 | 1 | -0/+9 |
| | | | | | llvm-svn: 43323 | ||||
| * | Don't branch fold inline asm statements. | Bill Wendling | 2007-10-19 | 1 | -2/+1 |
| | | | | | llvm-svn: 43191 | ||||
| * | New test. | Devang Patel | 2007-10-15 | 1 | -0/+5 |
| | | | | | llvm-svn: 42986 | ||||
| * | testcase for PR1647 | Chris Lattner | 2007-10-03 | 1 | -0/+7 |
| | | | | | llvm-svn: 42570 | ||||
| * | PR 1603 test case. | Devang Patel | 2007-10-01 | 1 | -0/+8 |
| | | | | | llvm-svn: 42502 | ||||
| * | Do not ignore packed member size while selecting union type. | Devang Patel | 2007-09-28 | 1 | -0/+37 |
| | | | | | llvm-svn: 42458 | ||||
| * | new testcase for PR1708 | Chris Lattner | 2007-09-27 | 1 | -0/+14 |
| | | | | | llvm-svn: 42398 | ||||
| * | Test the C front-end, not the C++ front-end. | Duncan Sands | 2007-09-26 | 4 | -6/+6 |
| | | | | | llvm-svn: 42350 | ||||
| * | Test that local variables are aligned as the user requested. | Duncan Sands | 2007-09-26 | 1 | -0/+7 |
| | | | | | llvm-svn: 42338 | ||||
| * | XFAIL for llvm-gcc4.0 | Tanya Lattner | 2007-09-24 | 1 | -1/+1 |
| | | | | | llvm-svn: 42266 | ||||
| * | gcroot testcase, patch by Eric Christopher. | Chris Lattner | 2007-09-21 | 1 | -0/+28 |
| | | | | | llvm-svn: 42198 | ||||
| * | Testcase for PR1678. | Duncan Sands | 2007-09-19 | 1 | -0/+10 |
| | | | | | llvm-svn: 42128 | ||||
| * | New testcase for PR1662. GCC trees are horrible :( | Chris Lattner | 2007-09-15 | 1 | -0/+7 |
| | | | | | llvm-svn: 41979 | ||||
| * | Fix date :) | Anton Korobeynikov | 2007-09-11 | 1 | -0/+0 |
| | | | | | llvm-svn: 41870 | ||||

