diff options
author | Tim Northover <Tim.Northover@arm.com> | 2013-01-08 19:36:33 +0000 |
---|---|---|
committer | Tim Northover <Tim.Northover@arm.com> | 2013-01-08 19:36:33 +0000 |
commit | a67352d4012b9db3c0c06cf962c0e561054753c3 (patch) | |
tree | 6a1fe9e5dffdeb318bb4f632c9fbcd45c242887f | |
parent | 4a50e53e53816076584c957741cb430899271726 (diff) | |
download | external_llvm-a67352d4012b9db3c0c06cf962c0e561054753c3.zip external_llvm-a67352d4012b9db3c0c06cf962c0e561054753c3.tar.gz external_llvm-a67352d4012b9db3c0c06cf962c0e561054753c3.tar.bz2 |
Specify complete triple for fp128 tests.
This avoids FileCheck failing over different comment characters in
assembly (notably powerpc64 on Linux vs Darwin) and should fix David's
build-bot.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@171886 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/CodeGen/ARM/fp128.ll | 2 | ||||
-rw-r--r-- | test/CodeGen/PowerPC/fp128.ll | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/test/CodeGen/ARM/fp128.ll b/test/CodeGen/ARM/fp128.ll index ab476d4..bdeb547 100644 --- a/test/CodeGen/ARM/fp128.ll +++ b/test/CodeGen/ARM/fp128.ll @@ -1,4 +1,4 @@ -; RUN: llc -march=arm < %s | FileCheck --check-prefix=LITTLEENDIAN %s +; RUN: llc -mtriple=arm-none-linux < %s | FileCheck --check-prefix=LITTLEENDIAN %s @var = global fp128 0xL00000000000000008000000000000000 diff --git a/test/CodeGen/PowerPC/fp128.ll b/test/CodeGen/PowerPC/fp128.ll index 9755f9b..a0b06a4 100644 --- a/test/CodeGen/PowerPC/fp128.ll +++ b/test/CodeGen/PowerPC/fp128.ll @@ -1,4 +1,4 @@ -; RUN: llc -march=ppc64 < %s | FileCheck --check-prefix=BIGENDIAN %s +; RUN: llc -mtriple=powerpc64-none-linux < %s | FileCheck --check-prefix=BIGENDIAN %s @var = global fp128 0xL00000000000000008000000000000000 |