summaryrefslogtreecommitdiffstats
path: root/llvm/test/Regression
Commit message (Collapse)AuthorAgeFilesLines
...
* Test case for PR1082, an llvm-upgrade bug.Reid Spencer2007-01-061-0/+23
| | | | llvm-svn: 32951
* Test Case for PR1080.Reid Spencer2007-01-061-0/+24
| | | | llvm-svn: 32943
* Update test case.Evan Cheng2007-01-051-2/+0
| | | | llvm-svn: 32936
* This test case needs parameter attributes, manually upgrade and don'tReid Spencer2007-01-051-21/+21
| | | | | | run llvm-upgrade. llvm-svn: 32926
* Global variables are not renamed by llvm-upgrade any more.Reid Spencer2007-01-055-10/+10
| | | | llvm-svn: 32925
* Update for change in parameter attribute syntax.Reid Spencer2007-01-051-1/+1
| | | | llvm-svn: 32924
* Update for change in parameter attributes syntax.Reid Spencer2007-01-051-32/+32
| | | | llvm-svn: 32923
* Wrap long RUN: line.Reid Spencer2007-01-051-2/+4
| | | | llvm-svn: 32922
* Globals are not renamed any more.Reid Spencer2007-01-051-1/+1
| | | | llvm-svn: 32921
* This test case needs zext and sext attributes so manually upgrade it andReid Spencer2007-01-051-13/+13
| | | | | | don't run llvm-upgrade. llvm-svn: 32920
* Changes to parameter attribute syntax.Reid Spencer2007-01-052-2/+2
| | | | llvm-svn: 32919
* Changes to parameter attributes syntax.Reid Spencer2007-01-051-13/+13
| | | | llvm-svn: 32918
* Globals are not being renamed any more.Reid Spencer2007-01-052-2/+2
| | | | llvm-svn: 32917
* This test case has been translated to 2.0 assembly so don't runReid Spencer2007-01-051-1/+1
| | | | | | llvm-upgrade on it. llvm-svn: 32916
* Fix this to check for the correct error message.Reid Spencer2007-01-051-1/+2
| | | | llvm-svn: 32915
* This tests for something that will become illegal soon. The test/FeatureReid Spencer2007-01-051-4/+0
| | | | | | suite has a test for renaming of global variables. llvm-svn: 32914
* Beef up this test case a little by introducing a global variable nameReid Spencer2007-01-051-2/+4
| | | | | | | conflict after upgrade resulting from collapsed type planes. The test now checks to make sure llvm-upgrade produces appropriate warning messages. llvm-svn: 32913
* Make this test that we can drop the implementation keyword for llvm-as.Reid Spencer2007-01-051-3/+3
| | | | | | llvm-upgrade is irrelevant for this test case. llvm-svn: 32912
* Give the assembler some input.Reid Spencer2007-01-051-3/+4
| | | | llvm-svn: 32903
* Add a test case for SSE fcopysign using SSE bitwise operations.Evan Cheng2007-01-051-0/+18
| | | | llvm-svn: 32901
* new testChris Lattner2007-01-051-0/+4
| | | | llvm-svn: 32898
* manually upgrade this testcaseChris Lattner2007-01-051-23/+23
| | | | llvm-svn: 32897
* new testcaseChris Lattner2007-01-051-0/+9
| | | | llvm-svn: 32892
* llvm upgrade doesn't accept 'define'Chris Lattner2007-01-051-1/+2
| | | | llvm-svn: 32891
* new testcaseChris Lattner2007-01-051-0/+6
| | | | llvm-svn: 32889
* add missing flagsChris Lattner2007-01-041-2/+2
| | | | llvm-svn: 32885
* new testcaseChris Lattner2007-01-041-0/+10
| | | | llvm-svn: 32883
* remove xfailed test that depends on obsolete argument to lliChris Lattner2007-01-041-76/+0
| | | | llvm-svn: 32876
* Remove a manual renaming of a variable that was introduced beforeReid Spencer2007-01-041-1/+1
| | | | | | llvm-upgrade could properly handle collapsed type planes. llvm-svn: 32875
* Add test for constructor and destructor sections.Lauro Ramos Venancio2007-01-041-0/+16
| | | | llvm-svn: 32873
* Add extload(i1) test.Lauro Ramos Venancio2007-01-041-0/+22
| | | | llvm-svn: 32872
* Add test for FCOPYSIGN.Lauro Ramos Venancio2007-01-041-0/+21
| | | | llvm-svn: 32871
* Update test cases that grepped for register names that have now changedReid Spencer2007-01-037-15/+24
| | | | | | as a result of llvm-upgrade handling collapsed type planes better. llvm-svn: 32849
* It is no longer permissible to have undefined types in function parameters.Reid Spencer2007-01-031-0/+4
| | | | | | Just fix it by defining the type as opaque. llvm-svn: 32838
* Fix this test case. It is no longer permissible to have undefined typesReid Spencer2007-01-031-0/+4
| | | | | | in function parameters. Fix by just defining the type as opaque. llvm-svn: 32837
* Fix this test cases to use parameter attributes for its parameter andReid Spencer2007-01-032-114/+111
| | | | | | | result types. These tests are checking for sext behavior and it won't happen unless requested with the parameter attribute. llvm-svn: 32828
* This test case previously passed the assembler without error even thoughReid Spencer2007-01-021-0/+2
| | | | | | | it used an undefined type name as a parameter argument. This bug in the assembler has been fixed and it is now necessary to define the type. llvm-svn: 32826
* Add a test case for abstract parameter and result types in functionReid Spencer2007-01-021-0/+10
| | | | | | definitions. The assembler should produce an error on this input. llvm-svn: 32819
* For PR1070:Reid Spencer2007-01-028-19/+25
| | | | | | | | | | Tweak the RUN: lines of these tests to accommodate the renaming of variables done by llvm-upgrade. The renaming occurs as a result of avoiding name collisons for collapsed type planes. Conflicting names have a .u (unsigned) or .s (signed) suffix added. This patch updates the grep expression to accommodate the new names. llvm-svn: 32815
* For PR1070:Reid Spencer2007-01-025-22/+40
| | | | | | | Revert previous patch now that llvm-upgrade can handle collapsed type plane conversion properly. llvm-svn: 32814
* Manually upgrade this test case to make sure that the new cast-to-boolReid Spencer2007-01-021-3/+3
| | | | | | semantics are retained. llvm-svn: 32813
* For PR1070:Reid Spencer2007-01-021-0/+5
| | | | | | | Add a test case to ensure that llvm-upgrade retains correct semantics for the previous definition of "cast to bool" which compared against null. llvm-svn: 32812
* Reverse last patch, committed by accident.Reid Spencer2007-01-021-2/+0
| | | | llvm-svn: 32809
* Fix this test case to be legal. There is no ubyte %tmp ever defined!Reid Spencer2007-01-021-0/+2
| | | | llvm-svn: 32808
* Back out last revision now that llvm-upgrade can remove useless bitcasts.Reid Spencer2007-01-011-2/+2
| | | | | | This serves as a test of that feature. llvm-svn: 32806
* implement missing comparesRafael Espindola2006-12-311-0/+11
| | | | | | | patch by Lauro bug fixed by me llvm-svn: 32795
* For PR950:Reid Spencer2006-12-31117-299/+285
| | | | | | | | | | | | | | | | | | | | | | Update the test suite to accommodate the change from signed integer types to signless integer types. The changes were of only a few kinds: 1. Make sure llvm-upgrade is run on the source which does the bulk of the changes automatically. 2. Change things like "grep 'int'" to "grep 'i32'" 3. In several tests bitcasting caused the same name to be reused in the same type plane. These had to be manually fixed. The fix was (generally) to leave the bitcast and provide the instruction with a new name. This should not affect the semantics of the test. In a few cases, the bitcasts were known to be superfluous and irrelevant to the test case so they were removed. 4. One test case uses a bytecode file which needed to be updated to the latest bytecode format. llvm-svn: 32789
* Update tests that need to be run through llvm-upgrade. This is necessaryReid Spencer2006-12-2940-61/+77
| | | | | | for upcoming changes to the llvm assembly grammar. llvm-svn: 32768
* Test case for PR1065.Reid Spencer2006-12-231-0/+33
| | | | llvm-svn: 32755
* For PR950:Reid Spencer2006-12-2313-15/+356
| | | | | | | | This patch removes the SetCC instructions and replaces them with the ICmp and FCmp instructions. The SetCondInst instruction has been removed and been replaced with ICmpInst and FCmpInst. llvm-svn: 32751
OpenPOWER on IntegriCloud