summaryrefslogtreecommitdiffstats
path: root/llvm/test/Transforms/Internalize/2008-05-09-AllButMain.ll
Commit message (Collapse)AuthorAgeFilesLines
* Merge these 2 tests in a single file.Rafael Espindola2013-09-041-55/+0
| | | | llvm-svn: 189975
* Catch more CHECK that can be converted to CHECK-LABEL in Transforms for ↵Stephen Lin2013-07-141-15/+15
| | | | | | | | | | | | | | | | | | | | | | easier debugging. No functionality change. This conversion was done with the following bash script: find test/Transforms -name "*.ll" | \ while read NAME; do echo "$NAME" if ! grep -q "^; *RUN: *llc" $NAME; then TEMP=`mktemp -t temp` cp $NAME $TEMP sed -n "s/^define [^@]*@\([A-Za-z0-9_]*\)(.*$/\1/p" < $NAME | \ while read FUNC; do sed -i '' "s/;\(.*\)\([A-Za-z0-9_]*\):\( *\)define\([^@]*\)@$FUNC\([( ]*\)\$/;\1\2-LABEL:\3define\4@$FUNC(/g" $TEMP done mv $TEMP $NAME fi done llvm-svn: 186269
* Change the internalize pass to internalize all symbols when given an emptyRafael Espindola2012-10-261-4/+5
| | | | | | | list of externals. This makes sense since a shared library with no symbols can still be useful if it has static constructors. llvm-svn: 166795
* Port testcase to FileCheck.Rafael Espindola2012-10-261-13/+40
| | | | llvm-svn: 166742
* Change tests from "opt %s" to "opt < %s" so that opt doesn't see theDan Gohman2009-09-111-5/+5
| | | | | | | | input filename so that opt doesn't print the input filename in the output so that grep lines in the tests don't unintentionally match strings in the input filename. llvm-svn: 81537
* Use opt -S instead of piping bitcode output through llvm-dis.Dan Gohman2009-09-081-5/+5
| | | | llvm-svn: 81257
* Change these tests to feed the assembly files to opt directly, insteadDan Gohman2009-09-081-5/+5
| | | | | | of using llvm-as, now that opt supports this. llvm-svn: 81226
* Let some more tests ignore expected output on stderr.Matthijs Kooijman2008-06-101-2/+2
| | | | | | | | | Also, use > %t instead of -o %t for output in one test since that also works when %t already exists. This fixes 6 testcases. llvm-svn: 52178
* Simplify internalize pass. Add test case.Devang Patel2008-05-141-0/+27
Patch by Matthijs Kooijman! llvm-svn: 51114
OpenPOWER on IntegriCloud