Temporary test files should use %t.

llvm-svn: 81086
diff --git a/llvm/test/Feature/inlineasm.ll b/llvm/test/Feature/inlineasm.ll
index e4318f7..6be5722 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"