Rename %S metavar to %M (clang uses %S for the basename of the test file).
authorDaniel Dunbar <daniel@zuster.org>
Sat, 5 Sep 2009 12:38:35 +0000 (12:38 +0000)
committerDaniel Dunbar <daniel@zuster.org>
Sat, 5 Sep 2009 12:38:35 +0000 (12:38 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@81087 91177308-0d34-0410-b5e6-96231b3b80d8

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

index e914a69e34fbc380e07ef8328fe31610aeedef6c..18fcea00a13c5406da3e056eee3bcbb4a56009df 100644 (file)
@@ -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
 
index a4d4bd543abe0d243a6d193150037dc66b12cfa4..c0fc620cfa67d586ac0c8bc626612e9d4b32c827 100644 (file)
@@ -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 }
index 5041467604ae86cef84df8b9036f4365e9a4bc07..ea82075307948bfbcafc4002dc70134ef39a0c0c 100644 (file)
@@ -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* }
 
index 5526b87ce77df5907c0882e961a290b3ecc19314..80b616269940cc8e8dd49e9baab73b1250a7e015 100644 (file)
@@ -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*)
 
index 3f306b167b1df5d6bbc29a6fd338eaab5fc1a63d..601b917210d583e9e6e7fe08131d44c8ed8bf04b 100644 (file)
@@ -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
 }
index 38b7851ab86061f6527a27c3288de0fd9931b01f..f77d9e6d3b968054930d1a094ed10a621d7865e6 100644 (file)
@@ -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*)
 
index 4f98a2003253db6e8f61c7c7eb47bd45cc69531d..c1f3fc45f757ce1ec65d75dea293d819509abee1 100644 (file)
@@ -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 }