diff options
author | Dan Gohman <gohman@apple.com> | 2008-10-01 19:46:30 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2008-10-01 19:46:30 +0000 |
commit | 5c8c00af1f0fc20de4b56b46bd28b718ce123fe8 (patch) | |
tree | 25f0992fd17708669ce8e0b5cc609a9d49ba93bc | |
parent | 6388dde98e6c2c9556cda5a72989d1ce52caa00a (diff) | |
download | bcm5719-llvm-5c8c00af1f0fc20de4b56b46bd28b718ce123fe8.tar.gz bcm5719-llvm-5c8c00af1f0fc20de4b56b46bd28b718ce123fe8.zip |
Split this test and move it into target-specific directories.
This fixes failures on configurations that don't have one or the
other targets enabled.
llvm-svn: 56926
-rw-r--r-- | llvm/test/CodeGen/PowerPC/i128-and-beyond.ll | 8 | ||||
-rw-r--r-- | llvm/test/CodeGen/X86/i128-and-beyond.ll (renamed from llvm/test/CodeGen/Generic/i128-and-beyond.ll) | 1 |
2 files changed, 8 insertions, 1 deletions
diff --git a/llvm/test/CodeGen/PowerPC/i128-and-beyond.ll b/llvm/test/CodeGen/PowerPC/i128-and-beyond.ll new file mode 100644 index 00000000000..9e0d6c30b8c --- /dev/null +++ b/llvm/test/CodeGen/PowerPC/i128-and-beyond.ll @@ -0,0 +1,8 @@ +; RUN: llvm-as < %s | llc -march=ppc32 | grep 4294967295 | count 28 + +; These static initializers are too big to hand off to assemblers +; as monolithic blobs. + +@x = global i128 -1 +@y = global i256 -1 +@z = global i512 -1 diff --git a/llvm/test/CodeGen/Generic/i128-and-beyond.ll b/llvm/test/CodeGen/X86/i128-and-beyond.ll index bb3f81f91b6..db94b0ec05e 100644 --- a/llvm/test/CodeGen/Generic/i128-and-beyond.ll +++ b/llvm/test/CodeGen/X86/i128-and-beyond.ll @@ -1,5 +1,4 @@ ; RUN: llvm-as < %s | llc -march=x86 -mtriple=i686-pc-linux-gnu | grep 18446744073709551615 | count 14 -; RUN: llvm-as < %s | llc -march=ppc32 | grep 4294967295 | count 28 ; These static initializers are too big to hand off to assemblers ; as monolithic blobs. |