summaryrefslogtreecommitdiffstats
path: root/test/CodeGen/arm64-be-bitfield.c
diff options
context:
space:
mode:
authorTim Northover <tnorthover@apple.com>2014-07-23 12:57:31 +0000
committerTim Northover <tnorthover@apple.com>2014-07-23 12:57:31 +0000
commit5a6d4817ec4d2556a85a48d4c26e88337a00331e (patch)
tree702dea2374abed6986166329887799a266adddcd /test/CodeGen/arm64-be-bitfield.c
parenteb8c2c992ea2d496259cd6ca6257af85f844d78c (diff)
AArch64: use aarch64_be instead of arm64_be in all tests.
arm64_be doesn't really exist; it was useful for testing while AArch64 and ARM64 were separate, but now the only real way to refer to the system is aarch64_be. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@213747 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/arm64-be-bitfield.c')
-rw-r--r--test/CodeGen/arm64-be-bitfield.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CodeGen/arm64-be-bitfield.c b/test/CodeGen/arm64-be-bitfield.c
index f563596bdd..2fe467bcf1 100644
--- a/test/CodeGen/arm64-be-bitfield.c
+++ b/test/CodeGen/arm64-be-bitfield.c
@@ -1,4 +1,4 @@
-// RUN: %clang_cc1 -triple arm64_be-linux-gnu -ffreestanding -emit-llvm -O0 -o - %s | FileCheck %s
+// RUN: %clang_cc1 -triple aarch64_be-linux-gnu -ffreestanding -emit-llvm -O0 -o - %s | FileCheck %s
struct bt3 { signed b2:10; signed b3:10; } b16;