From 5c8c00af1f0fc20de4b56b46bd28b718ce123fe8 Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Wed, 1 Oct 2008 19:46:30 +0000 Subject: 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 --- llvm/test/CodeGen/Generic/i128-and-beyond.ll | 9 --------- llvm/test/CodeGen/PowerPC/i128-and-beyond.ll | 8 ++++++++ llvm/test/CodeGen/X86/i128-and-beyond.ll | 8 ++++++++ 3 files changed, 16 insertions(+), 9 deletions(-) delete mode 100644 llvm/test/CodeGen/Generic/i128-and-beyond.ll create mode 100644 llvm/test/CodeGen/PowerPC/i128-and-beyond.ll create mode 100644 llvm/test/CodeGen/X86/i128-and-beyond.ll (limited to 'llvm/test') diff --git a/llvm/test/CodeGen/Generic/i128-and-beyond.ll b/llvm/test/CodeGen/Generic/i128-and-beyond.ll deleted file mode 100644 index bb3f81f91b6..00000000000 --- a/llvm/test/CodeGen/Generic/i128-and-beyond.ll +++ /dev/null @@ -1,9 +0,0 @@ -; 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. - -@x = global i128 -1 -@y = global i256 -1 -@z = global i512 -1 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/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 -- cgit v1.2.3