Update test cases that grepped for register names that have now changed
authorReid Spencer <rspencer@reidspencer.com>
Wed, 3 Jan 2007 23:47:29 +0000 (23:47 +0000)
committerReid Spencer <rspencer@reidspencer.com>
Wed, 3 Jan 2007 23:47:29 +0000 (23:47 +0000)
as a result of llvm-upgrade handling collapsed type planes better.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32849 91177308-0d34-0410-b5e6-96231b3b80d8

test/CodeGen/ARM/section.ll
test/CodeGen/X86/loop-hoist.ll
test/CodeGen/X86/packed_struct.ll
test/Linker/2005-12-06-AppendingZeroLengthArrays.ll
test/Linker/weakextern.ll
test/Transforms/GlobalOpt/memcpy.ll
test/Transforms/LCSSA/2006-06-03-IncorrectIDFPhis.ll

index 924323fbd7c80ac11e96e84d6fb742d0da11ff39..469b935fa1c996866f41cb0239974b7b1af453d5 100644 (file)
@@ -1,5 +1,6 @@
 ; RUN: llvm-upgrade < %s | llvm-as | llc -march=arm &&
-; RUN: llvm-upgrade < %s | llvm-as | llc -march=arm | grep "__DTOR_END__:" &&
-; RUN: llvm-upgrade < %s | llvm-as | llc -march=arm | grep '.section .dtors,"aw",.progbits'
+; RUN: llvm-upgrade < %s | llvm-as | llc -march=arm | grep "__DTOR_END__.s:" &&
+; RUN: llvm-upgrade < %s | llvm-as | llc -march=arm | \
+; RUN:    grep '.section .dtors,"aw",.progbits'
 
 %__DTOR_END__ = internal global [1 x int] zeroinitializer, section ".dtors"
index ccbf53fe49d5e96988f80a19069f461fb3991210..32ed381d57ba0c6e2c990e46fa122dfbd0553c65 100644 (file)
@@ -1,5 +1,9 @@
-; RUN: llvm-upgrade < %s | llvm-as | llc -relocation-model=dynamic-no-pic -mtriple=i686-apple-darwin8.7.2 | grep L_Arr.non_lazy_ptr &&
-; RUN: llvm-upgrade < %s | llvm-as | llc -relocation-model=dynamic-no-pic -mtriple=i686-apple-darwin8.7.2 | %prcontext L_Arr.non_lazy_ptr 1 | grep '4(%esp)'
+; RUN: llvm-upgrade < %s | llvm-as | \
+; RUN:   llc -relocation-model=dynamic-no-pic -mtriple=i686-apple-darwin8.7.2 |\
+; RUN:   grep L_Arr.s.non_lazy_ptr &&
+; RUN: llvm-upgrade < %s | llvm-as | \
+; RUN:   llc -relocation-model=dynamic-no-pic -mtriple=i686-apple-darwin8.7.2 |\
+; RUN:   %prcontext L_Arr.s.non_lazy_ptr 1 | grep '4(%esp)'
 
 %Arr = external global [0 x int]                ; <[0 x int]*> [#uses=2]
 
index 94548b892f43162e96739f449f579099f8d7c2b9..c0aa64661675410105b15e5b1b8f4db2d364c127 100644 (file)
@@ -1,8 +1,8 @@
-; RUN: llvm-upgrade < %s | llvm-as | llc -march=x86 |grep "foos+5" &&
-; RUN: llvm-upgrade < %s | llvm-as | llc -march=x86 |grep "foos+1" &&
-; RUN: llvm-upgrade < %s | llvm-as | llc -march=x86 |grep "foos+9" &&
-; RUN: llvm-upgrade < %s | llvm-as | llc -march=x86 |grep "bara+19" &&
-; RUN: llvm-upgrade < %s | llvm-as | llc -march=x86 |grep "bara+4"
+; RUN: llvm-upgrade < %s | llvm-as | llc -march=x86 | grep "foos.s+5" &&
+; RUN: llvm-upgrade < %s | llvm-as | llc -march=x86 | grep "foos.s+1" &&
+; RUN: llvm-upgrade < %s | llvm-as | llc -march=x86 | grep "foos.s+9" &&
+; RUN: llvm-upgrade < %s | llvm-as | llc -march=x86 | grep "bara+19" &&
+; RUN: llvm-upgrade < %s | llvm-as | llc -march=x86 | grep "bara+4"
 
 ; make sure we compute the correct offset for a packed structure
 
index c5b78cc3fe1deed70052530b6970c190e25c6862..a55a2233a6a98517c243a31cd6a77012cde00fec 100644 (file)
@@ -1,6 +1,7 @@
-; RUN: echo "%G = appending global [0 x int] zeroinitializer" | llvm-upgrade | llvm-as > %t.out2.bc
+; RUN: echo "%G = appending global [0 x int] zeroinitializer" | llvm-upgrade |\
+; RUN:   llvm-as > %t.out2.bc
 ; RUN: llvm-upgrade < %s | llvm-as > %t.out1.bc
-; RUN: llvm-link %t.out[12].bc | llvm-dis | grep '%G ='
+; RUN: llvm-link %t.out[12].bc | llvm-dis | grep '%G.s ='
 
 ; When linked, the globals should be merged, and the result should still 
 ; be named '%G'.
index f4401811c9678eb8d09e2bf48ee49cfbdbc2d618..882c6f7c14403b12c3382cbb758f49be261d99c0 100644 (file)
@@ -1,7 +1,7 @@
 ; RUN: llvm-upgrade < %s | llvm-as > %t.bc
 ; RUN: llvm-upgrade < `dirname %s`/testlink1.ll | llvm-as > %t2.bc
 ; RUN: llvm-link %t.bc %t.bc %t2.bc -o %t1.bc -f
-; RUN: llvm-dis < %t1.bc | grep "kallsyms_names = extern_weak" &&
+; RUN: llvm-dis < %t1.bc | grep "kallsyms_names.u = extern_weak" &&
 ; RUN: llvm-dis < %t1.bc | grep "MyVar.s = external global i32" &&
 ; RUN: llvm-dis < %t1.bc | grep "Inte.s = global i32"
 
index 2d0659ba4e234257ee969b89268167d8ed66a0ed..86b73365f217029723920a33bb4f57734b2dacb1 100644 (file)
@@ -1,4 +1,5 @@
-; RUN: llvm-upgrade < %s | llvm-as | opt -globalopt | llvm-dis | grep 'G1 = internal constant'
+; RUN: llvm-upgrade < %s | llvm-as | opt -globalopt | llvm-dis | \
+; RUN:   grep 'G1.s = internal constant'
 
 %G1 = internal global [58 x sbyte] c"asdlfkajsdlfkajsd;lfkajds;lfkjasd;flkajsd;lkfja;sdlkfjasd\00"
 
index fb36b4b7e3526d1b0793b63d5264d7507b02fdb2..342bf4cd61b0840731d82754d34f42f0d8711c51 100644 (file)
@@ -1,5 +1,7 @@
-; RUN: llvm-upgrade < %s | llvm-as | opt -lcssa | llvm-dis | grep "%SJE.0.0.lcssa = phi .struct.SetJmpMapEntry" &&
-; RUN: llvm-upgrade < %s | llvm-as | opt -lcssa | llvm-dis | grep "%SJE.0.0.lcssa1 = phi .struct.SetJmpMapEntry"
+; RUN: llvm-upgrade < %s | llvm-as | opt -lcssa | llvm-dis | \
+; RUN:   grep "%SJE.0.0.u.lcssa = phi .struct.SetJmpMapEntry" &&
+; RUN: llvm-upgrade < %s | llvm-as | opt -lcssa | llvm-dis | \
+; RUN:   grep "%SJE.0.0.u.lcssa1 = phi .struct.SetJmpMapEntry"
 
 %struct.SetJmpMapEntry = type { sbyte*, uint, %struct.SetJmpMapEntry* }