diff options
Diffstat (limited to 'test/Transforms/Inline')
-rw-r--r-- | test/Transforms/Inline/alloca_test.ll | 2 | ||||
-rw-r--r-- | test/Transforms/Inline/basictest.ll | 2 | ||||
-rw-r--r-- | test/Transforms/Inline/cfg_preserve_test.ll | 2 | ||||
-rw-r--r-- | test/Transforms/Inline/inline_dce.ll | 2 | ||||
-rw-r--r-- | test/Transforms/Inline/invoke_test-1.ll | 2 | ||||
-rw-r--r-- | test/Transforms/Inline/invoke_test-2.ll | 2 | ||||
-rw-r--r-- | test/Transforms/Inline/invoke_test-3.ll | 2 |
7 files changed, 7 insertions, 7 deletions
diff --git a/test/Transforms/Inline/alloca_test.ll b/test/Transforms/Inline/alloca_test.ll index 8bd95756d7..418dc3eaf9 100644 --- a/test/Transforms/Inline/alloca_test.ll +++ b/test/Transforms/Inline/alloca_test.ll @@ -1,7 +1,7 @@ ; This test ensures that alloca instructions in the entry block for an inlined ; function are moved to the top of the function they are inlined into. ; -; RUN: as < %s | opt -inline | dis | grep -C 1 alloca | grep Entry: +; RUN: llvm-as < %s | opt -inline | llvm-dis | grep -C 1 alloca | grep Entry: int %func(int %i) { %X = alloca int diff --git a/test/Transforms/Inline/basictest.ll b/test/Transforms/Inline/basictest.ll index f12d00c364..e32007839b 100644 --- a/test/Transforms/Inline/basictest.ll +++ b/test/Transforms/Inline/basictest.ll @@ -1,4 +1,4 @@ -; RUN: as < %s | opt -inline -disable-output -print +; RUN: llvm-as < %s | opt -inline -disable-output -print int %func(int %i) { ret int %i diff --git a/test/Transforms/Inline/cfg_preserve_test.ll b/test/Transforms/Inline/cfg_preserve_test.ll index 83179a045c..7548b52dde 100644 --- a/test/Transforms/Inline/cfg_preserve_test.ll +++ b/test/Transforms/Inline/cfg_preserve_test.ll @@ -1,6 +1,6 @@ ; This test ensures that inlining an "empty" function does not destroy the CFG ; -; RUN: as < %s | opt -inline | dis | not grep br +; RUN: llvm-as < %s | opt -inline | llvm-dis | not grep br int %func(int %i) { ret int %i diff --git a/test/Transforms/Inline/inline_dce.ll b/test/Transforms/Inline/inline_dce.ll index 7299d36c28..bcad01c883 100644 --- a/test/Transforms/Inline/inline_dce.ll +++ b/test/Transforms/Inline/inline_dce.ll @@ -1,7 +1,7 @@ ; This checks to ensure that the inline pass deletes functions if they get ; inlined into all of their callers. -; RUN: as < %s | opt -inline | dis | not grep %reallysmall +; RUN: llvm-as < %s | opt -inline | llvm-dis | not grep %reallysmall implementation diff --git a/test/Transforms/Inline/invoke_test-1.ll b/test/Transforms/Inline/invoke_test-1.ll index 2aa47f770c..023563a98a 100644 --- a/test/Transforms/Inline/invoke_test-1.ll +++ b/test/Transforms/Inline/invoke_test-1.ll @@ -1,7 +1,7 @@ ; Test that we can inline a simple function, turning the calls in it into invoke ; instructions -; RUN: as < %s | opt -inline | dis | not grep 'call[^e]' +; RUN: llvm-as < %s | opt -inline | llvm-dis | not grep 'call[^e]' declare void %might_throw() diff --git a/test/Transforms/Inline/invoke_test-2.ll b/test/Transforms/Inline/invoke_test-2.ll index 95c8e66c2b..9c2a8548ca 100644 --- a/test/Transforms/Inline/invoke_test-2.ll +++ b/test/Transforms/Inline/invoke_test-2.ll @@ -1,7 +1,7 @@ ; Test that if an invoked function is inlined, and if that function cannot ; throw, that the dead handler is now unreachable. -; RUN: as < %s | opt -inline -simplifycfg | dis | not grep UnreachableExceptionHandler +; RUN: llvm-as < %s | opt -inline -simplifycfg | llvm-dis | not grep UnreachableExceptionHandler declare void %might_throw() diff --git a/test/Transforms/Inline/invoke_test-3.ll b/test/Transforms/Inline/invoke_test-3.ll index 414d0580c2..7ca3f6ad29 100644 --- a/test/Transforms/Inline/invoke_test-3.ll +++ b/test/Transforms/Inline/invoke_test-3.ll @@ -1,7 +1,7 @@ ; Test that any rethrown exceptions in an inlined function are automatically ; turned into branches to the invoke destination. -; RUN: as < %s | opt -inline | dis | not grep 'call void %llvm.unwind' +; RUN: llvm-as < %s | opt -inline | llvm-dis | not grep 'call void %llvm.unwind' declare void %might_throw() declare void %llvm.unwind() |