diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2007-01-05 17:39:54 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2007-01-05 17:39:54 +0000 |
commit | 629aff553a8846675a4f304530f0c500367f6805 (patch) | |
tree | c0b26cfedd77ae053a6a4f4de338135d511bf56d | |
parent | ba1ad0236a2eac80ab264eec295de4555641ddd7 (diff) | |
download | bcm5719-llvm-629aff553a8846675a4f304530f0c500367f6805.tar.gz bcm5719-llvm-629aff553a8846675a4f304530f0c500367f6805.zip |
Globals are not being renamed any more.
llvm-svn: 32917
-rw-r--r-- | llvm/test/Regression/CodeGen/ARM/constants.ll | 2 | ||||
-rw-r--r-- | llvm/test/Regression/CodeGen/ARM/section.ll | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/llvm/test/Regression/CodeGen/ARM/constants.ll b/llvm/test/Regression/CodeGen/ARM/constants.ll index a329726a4ba..560a4c8429c 100644 --- a/llvm/test/Regression/CodeGen/ARM/constants.ll +++ b/llvm/test/Regression/CodeGen/ARM/constants.ll @@ -6,7 +6,7 @@ ; RUN: grep "mov r0, #-1073741761" %t.s | wc -l | grep 1 && ; RUN: grep "mov r0, #1008" %t.s | wc -l | grep 1 && ; RUN: grep "cmp r0, #65536" %t.s | wc -l | grep 1 && -; RUN: grep "\.comm.*a.s,4,4" %t.s | wc -l | grep 1 +; RUN: grep "\.comm.*a,4,4" %t.s | wc -l | grep 1 %a = internal global int 0 diff --git a/llvm/test/Regression/CodeGen/ARM/section.ll b/llvm/test/Regression/CodeGen/ARM/section.ll index 469b935fa1c..e345da1e953 100644 --- a/llvm/test/Regression/CodeGen/ARM/section.ll +++ b/llvm/test/Regression/CodeGen/ARM/section.ll @@ -1,5 +1,5 @@ ; RUN: llvm-upgrade < %s | llvm-as | llc -march=arm && -; RUN: llvm-upgrade < %s | llvm-as | llc -march=arm | grep "__DTOR_END__.s:" && +; RUN: llvm-upgrade < %s | llvm-as | llc -march=arm | grep "__DTOR_END__:" && ; RUN: llvm-upgrade < %s | llvm-as | llc -march=arm | \ ; RUN: grep '.section .dtors,"aw",.progbits' |