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 /llvm/test/CodeGen/X86/i128-and-beyond.ll | |
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
Diffstat (limited to 'llvm/test/CodeGen/X86/i128-and-beyond.ll')
-rw-r--r-- | llvm/test/CodeGen/X86/i128-and-beyond.ll | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/llvm/test/CodeGen/X86/i128-and-beyond.ll b/llvm/test/CodeGen/X86/i128-and-beyond.ll new file mode 100644 index 00000000000..db94b0ec05e --- /dev/null +++ b/llvm/test/CodeGen/X86/i128-and-beyond.ll @@ -0,0 +1,8 @@ +; RUN: llvm-as < %s | llc -march=x86 -mtriple=i686-pc-linux-gnu | grep 18446744073709551615 | count 14 + +; 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 |