inlining can change methods a second time, so don't rerun inliner when testing for
authorChris Lattner <sabre@nondot.org>
Thu, 7 Jun 2001 17:00:00 +0000 (17:00 +0000)
committerChris Lattner <sabre@nondot.org>
Thu, 7 Jun 2001 17:00:00 +0000 (17:00 +0000)
differences in optimizations

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12 91177308-0d34-0410-b5e6-96231b3b80d8

test/Feature/TestOptimizer.sh

index b34aae2785e2faa68530ab2b3265c0afdf77d539..eecc16347a9a49b2c949783713bb9b8565cc9035 100755 (executable)
@@ -6,7 +6,7 @@ export LD_LIBRARY_PATH
 ../tools/as/as < $1 | ../tools/opt/opt -q -inline -constprop -dce | ../tools/dis/dis | ../tools/as/as > $1.bc.1 || exit 1
 
 # Should not be able to optimize further!
-../tools/opt/opt -q -inline -constprop -dce < $1.bc.1 > $1.bc.2 || exit 2
+../tools/opt/opt -q -constprop -dce < $1.bc.1 > $1.bc.2 || exit 2
 
 diff $1.bc.[12] || exit 3
 rm $1.bc.[12]