diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-09-05 12:38:26 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-09-05 12:38:26 +0000 |
commit | 5e606cb5034aa8826f8fe509d8d2534b0b821430 (patch) | |
tree | 6d44e49a75a27d4fcd54f17e2a4a7b2b98f9bd06 /llvm/test/Feature/inlineasm.ll | |
parent | b9a562b7c42c6cd4b142bc86f4a67f64d6b5220e (diff) | |
download | bcm5719-llvm-5e606cb5034aa8826f8fe509d8d2534b0b821430.tar.gz bcm5719-llvm-5e606cb5034aa8826f8fe509d8d2534b0b821430.zip |
Temporary test files should use %t.
llvm-svn: 81086
Diffstat (limited to 'llvm/test/Feature/inlineasm.ll')
-rw-r--r-- | llvm/test/Feature/inlineasm.ll | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/test/Feature/inlineasm.ll b/llvm/test/Feature/inlineasm.ll index e4318f775b6..6be5722abfc 100644 --- a/llvm/test/Feature/inlineasm.ll +++ b/llvm/test/Feature/inlineasm.ll @@ -1,6 +1,6 @@ -; RUN: llvm-as < %s | llvm-dis > t1.ll -; RUN: llvm-as t1.ll -o - | llvm-dis > t2.ll -; RUN: diff t1.ll t2.ll +; RUN: llvm-as < %s | llvm-dis > %t1.ll +; RUN: llvm-as %t1.ll -o - | llvm-dis > %t2.ll +; RUN: diff %t1.ll %t2.ll module asm "this is an inline asm block" module asm "this is another inline asm block" |