[llvm-commits] [llvm] r81087 - in /llvm/trunk/test/Linker: 2003-05-15-TypeProblem.ll 2003-08-20-OpaqueTypeResolve.ll 2003-08-23-RecursiveOpaqueTypeResolve.ll 2003-08-28-TypeResolvesGlobal.ll 2003-08-28-TypeResolvesGlobal2.ll 2003-08-28-TypeResolvesGlobal3.ll 2003-10-21-ConflictingTypesTolerance.ll

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


Author: ddunbar
Date: Sat Sep  5 07:38:35 2009
New Revision: 81087

URL: http://llvm.org/viewvc/llvm-project?rev=81087&view=rev
Log:
Rename %S metavar to %M (clang uses %S for the basename of the test file).

Modified:
    llvm/trunk/test/Linker/2003-05-15-TypeProblem.ll
    llvm/trunk/test/Linker/2003-08-20-OpaqueTypeResolve.ll
    llvm/trunk/test/Linker/2003-08-23-RecursiveOpaqueTypeResolve.ll
    llvm/trunk/test/Linker/2003-08-28-TypeResolvesGlobal.ll
    llvm/trunk/test/Linker/2003-08-28-TypeResolvesGlobal2.ll
    llvm/trunk/test/Linker/2003-08-28-TypeResolvesGlobal3.ll
    llvm/trunk/test/Linker/2003-10-21-ConflictingTypesTolerance.ll

Modified: llvm/trunk/test/Linker/2003-05-15-TypeProblem.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Linker/2003-05-15-TypeProblem.ll?rev=81087&r1=81086&r2=81087&view=diff

==============================================================================
--- llvm/trunk/test/Linker/2003-05-15-TypeProblem.ll (original)
+++ llvm/trunk/test/Linker/2003-05-15-TypeProblem.ll Sat Sep  5 07:38:35 2009
@@ -1,10 +1,10 @@
 ; This one fails because the LLVM runtime is allowing two null pointers of
 ; the same type to be created!
 
-; RUN: echo {%S = type \{ %T*\} %T = type opaque} | llvm-as > %t.2.bc
+; RUN: echo {%M = type \{ %N*\} %N = type opaque} | llvm-as > %t.2.bc
 ; RUN: llvm-as < %s > %t.1.bc
 ; RUN: llvm-link %t.1.bc %t.2.bc
 
-%S = type { i32* }
-%T = type i32
+%M = type { i32* }
+%N = type i32
 

Modified: llvm/trunk/test/Linker/2003-08-20-OpaqueTypeResolve.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Linker/2003-08-20-OpaqueTypeResolve.ll?rev=81087&r1=81086&r2=81087&view=diff

==============================================================================
--- llvm/trunk/test/Linker/2003-08-20-OpaqueTypeResolve.ll (original)
+++ llvm/trunk/test/Linker/2003-08-20-OpaqueTypeResolve.ll Sat Sep  5 07:38:35 2009
@@ -1,8 +1,8 @@
 ; RUN: llvm-as < %s > %t.out1.bc
-; RUN: echo {%S = type \{ i32, i32* \} } | llvm-as > %t.out2.bc
+; RUN: echo {%M = type \{ i32, i32* \} } | llvm-as > %t.out2.bc
 ; RUN: llvm-link %t.out1.bc %t.out2.bc
 
-%S = type { i32, %T* }
-%T = type opaque
+%M = type { i32, %N* }
+%N = type opaque
 
-;%X = global { int, %T* } { int 5, %T* null }
+;%X = global { int, %N* } { int 5, %N* null }

Modified: llvm/trunk/test/Linker/2003-08-23-RecursiveOpaqueTypeResolve.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Linker/2003-08-23-RecursiveOpaqueTypeResolve.ll?rev=81087&r1=81086&r2=81087&view=diff

==============================================================================
--- llvm/trunk/test/Linker/2003-08-23-RecursiveOpaqueTypeResolve.ll (original)
+++ llvm/trunk/test/Linker/2003-08-23-RecursiveOpaqueTypeResolve.ll Sat Sep  5 07:38:35 2009
@@ -2,8 +2,8 @@
 ; net.
 
 ; RUN: llvm-as < %s > %t.out1.bc
-; RUN: echo "%S = type { %S*, i32* }" | llvm-as > %t.out2.bc
+; RUN: echo "%M = type { %M*, i32* }" | llvm-as > %t.out2.bc
 ; RUN: llvm-link %t.out1.bc %t.out2.bc
 
-%S = type { %S*, opaque* }
+%M = type { %M*, opaque* }
 

Modified: llvm/trunk/test/Linker/2003-08-28-TypeResolvesGlobal.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Linker/2003-08-28-TypeResolvesGlobal.ll?rev=81087&r1=81086&r2=81087&view=diff

==============================================================================
--- llvm/trunk/test/Linker/2003-08-28-TypeResolvesGlobal.ll (original)
+++ llvm/trunk/test/Linker/2003-08-28-TypeResolvesGlobal.ll Sat Sep  5 07:38:35 2009
@@ -1,12 +1,12 @@
 ; RUN: llvm-as < %s > %t.out1.bc
-; RUN: echo "%S = type i32" | llvm-as > %t.out2.bc
+; RUN: echo "%M = type i32" | llvm-as > %t.out2.bc
 ; RUN: llvm-link %t.out2.bc %t.out1.bc
 
-%S = type opaque
+%M = type opaque
 
 define void @foo(i32* %V) {
 	ret void
 }
 
-declare void @foo.upgrd.1(%S*)
+declare void @foo.upgrd.1(%M*)
 

Modified: llvm/trunk/test/Linker/2003-08-28-TypeResolvesGlobal2.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Linker/2003-08-28-TypeResolvesGlobal2.ll?rev=81087&r1=81086&r2=81087&view=diff

==============================================================================
--- llvm/trunk/test/Linker/2003-08-28-TypeResolvesGlobal2.ll (original)
+++ llvm/trunk/test/Linker/2003-08-28-TypeResolvesGlobal2.ll Sat Sep  5 07:38:35 2009
@@ -1,17 +1,17 @@
 ; RUN: llvm-as < %s > %t.out1.bc
-; RUN: echo "%S = type i32" | llvm-as > %t.out2.bc
+; RUN: echo "%M = type i32" | llvm-as > %t.out2.bc
 ; RUN: llvm-link %t.out2.bc %t.out1.bc
 
-%S = type opaque
+%M = type opaque
 
 define void @foo(i32* %V) {
 	ret void
 }
 
-declare void @foo.upgrd.1(%S*)
+declare void @foo.upgrd.1(%M*)
 
 define void @other() {
-	call void @foo.upgrd.1( %S* null )
+	call void @foo.upgrd.1( %M* null )
 	call void @foo( i32* null )
 	ret void
 }

Modified: llvm/trunk/test/Linker/2003-08-28-TypeResolvesGlobal3.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Linker/2003-08-28-TypeResolvesGlobal3.ll?rev=81087&r1=81086&r2=81087&view=diff

==============================================================================
--- llvm/trunk/test/Linker/2003-08-28-TypeResolvesGlobal3.ll (original)
+++ llvm/trunk/test/Linker/2003-08-28-TypeResolvesGlobal3.ll Sat Sep  5 07:38:35 2009
@@ -1,15 +1,15 @@
 ; RUN: llvm-as < %s > %t.out1.bc
-; RUN: echo "%S = type i32" | llvm-as > %t.out2.bc
+; RUN: echo "%M = type i32" | llvm-as > %t.out2.bc
 ; RUN: llvm-link %t.out2.bc %t.out1.bc
 
-%S = type opaque
+%M = type opaque
 
 ; GLobal using the resolved function prototype
-global void (%S*)* @foo		; <void (%S*)**>:0 [#uses=0]
+global void (%M*)* @foo		; <void (%M*)**>:0 [#uses=0]
 
 define void @foo.upgrd.1(i32* %V) {
 	ret void
 }
 
-declare void @foo(%S*)
+declare void @foo(%M*)
 

Modified: llvm/trunk/test/Linker/2003-10-21-ConflictingTypesTolerance.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Linker/2003-10-21-ConflictingTypesTolerance.ll?rev=81087&r1=81086&r2=81087&view=diff

==============================================================================
--- llvm/trunk/test/Linker/2003-10-21-ConflictingTypesTolerance.ll (original)
+++ llvm/trunk/test/Linker/2003-10-21-ConflictingTypesTolerance.ll Sat Sep  5 07:38:35 2009
@@ -1,6 +1,6 @@
 ; RUN: llvm-as < %s > %t.out1.bc
-; RUN: echo { %S = type \[8 x i32\] external global %S } | llvm-as > %t.out2.bc
-; RUN: llvm-link %t.out1.bc %t.out2.bc | llvm-dis | grep %S | grep \\{
-%S = type { i32 }
+; RUN: echo { %M = type \[8 x i32\] external global %M } | llvm-as > %t.out2.bc
+; RUN: llvm-link %t.out1.bc %t.out2.bc | llvm-dis | grep %M | grep \\{
+%M = type { i32 }
 
 





More information about the llvm-commits mailing list