[llvm-commits] [llvm] r81086 - in /llvm/trunk/test/Feature: float.ll inlineasm.ll

Daniel Dunbar daniel at zuster.org
Sat Sep 5 05:38:26 PDT 2009


Author: ddunbar
Date: Sat Sep  5 07:38:26 2009
New Revision: 81086

URL: http://llvm.org/viewvc/llvm-project?rev=81086&view=rev
Log:
Temporary test files should use %t.

Modified:
    llvm/trunk/test/Feature/float.ll
    llvm/trunk/test/Feature/inlineasm.ll

Modified: llvm/trunk/test/Feature/float.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Feature/float.ll?rev=81086&r1=81085&r2=81086&view=diff

==============================================================================
--- llvm/trunk/test/Feature/float.ll (original)
+++ llvm/trunk/test/Feature/float.ll Sat Sep  5 07:38:26 2009
@@ -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
 
 @F1     = global float 0x4010000000000000
 @D1     = global double 0x4010000000000000

Modified: llvm/trunk/test/Feature/inlineasm.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Feature/inlineasm.ll?rev=81086&r1=81085&r2=81086&view=diff

==============================================================================
--- llvm/trunk/test/Feature/inlineasm.ll (original)
+++ llvm/trunk/test/Feature/inlineasm.ll Sat Sep  5 07:38:26 2009
@@ -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"





More information about the llvm-commits mailing list