diff options
| author | Reid Spencer <rspencer@reidspencer.com> | 2007-01-26 08:25:06 +0000 |
|---|---|---|
| committer | Reid Spencer <rspencer@reidspencer.com> | 2007-01-26 08:25:06 +0000 |
| commit | ce380568b5406356a04d745c9c6f137000217ef4 (patch) | |
| tree | c7f2b122fd0787529ed0b95e2564971afa2ee6c6 /llvm/test/Linker/2005-12-06-AppendingZeroLengthArrays.ll | |
| parent | 4f95f1ab08a707652664aa6d211c1a513dece122 (diff) | |
| download | bcm5719-llvm-ce380568b5406356a04d745c9c6f137000217ef4.tar.gz bcm5719-llvm-ce380568b5406356a04d745c9c6f137000217ef4.zip | |
For PR761:
Remove "target endian/pointersize" or add "target datalayout" to make
the test parse properly or set the datalayout because defaults changes.
For PR645:
Make global names use the @ prefix.
For llvm-upgrade changes:
Fix test cases or completely remove use of llvm-upgrade for test cases
that cannot survive the new renaming or upgrade capabilities.
llvm-svn: 33533
Diffstat (limited to 'llvm/test/Linker/2005-12-06-AppendingZeroLengthArrays.ll')
| -rw-r--r-- | llvm/test/Linker/2005-12-06-AppendingZeroLengthArrays.ll | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/test/Linker/2005-12-06-AppendingZeroLengthArrays.ll b/llvm/test/Linker/2005-12-06-AppendingZeroLengthArrays.ll index 7aeffdf22b5..4c94f541017 100644 --- a/llvm/test/Linker/2005-12-06-AppendingZeroLengthArrays.ll +++ b/llvm/test/Linker/2005-12-06-AppendingZeroLengthArrays.ll @@ -1,9 +1,9 @@ -; RUN: echo "%G = appending global [0 x int] zeroinitializer" | llvm-upgrade |\ +; RUN: echo "@G = appending global [0 x i32] zeroinitializer" | \ ; 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 =' ; When linked, the globals should be merged, and the result should still -; be named '%G'. +; be named '@G'. %G = appending global [1 x int] zeroinitializer |

