diff options
author | James Molloy <james.molloy@arm.com> | 2014-04-23 10:26:08 +0000 |
---|---|---|
committer | James Molloy <james.molloy@arm.com> | 2014-04-23 10:26:08 +0000 |
commit | 7f4ba53ef0d1bb0171ce06109d51eec87e0e2413 (patch) | |
tree | 19ec5e629e01fcd53bdb7f118c79591c17de4c0b /clang/test | |
parent | 9511327db851b9f1c81dd0ceb7ce08c70f37af96 (diff) | |
download | bcm5719-llvm-7f4ba53ef0d1bb0171ce06109d51eec87e0e2413.tar.gz bcm5719-llvm-7f4ba53ef0d1bb0171ce06109d51eec87e0e2413.zip |
[ARM64] Add a missed case label for arm64_be, and enable the aarch64-varargs test for arm64_be.
This ensures that r203917 (cpirker "AArch64_be varargs processing for ARM ABI") is ported to ARM64.
llvm-svn: 206961
Diffstat (limited to 'clang/test')
-rw-r--r-- | clang/test/CodeGen/aarch64-varargs.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/clang/test/CodeGen/aarch64-varargs.c b/clang/test/CodeGen/aarch64-varargs.c index 053982bb25b..5f0ea6e2956 100644 --- a/clang/test/CodeGen/aarch64-varargs.c +++ b/clang/test/CodeGen/aarch64-varargs.c @@ -1,6 +1,7 @@ // RUN: %clang_cc1 -triple aarch64 -emit-llvm -o - %s | FileCheck -check-prefix=CHECK --check-prefix=CHECK-LE %s // RUN: %clang_cc1 -triple aarch64_be -emit-llvm -o - %s | FileCheck --check-prefix=CHECK --check-prefix=CHECK-BE %s // RUN: %clang_cc1 -triple arm64-linux-gnu -emit-llvm -o - %s | FileCheck --check-prefix=CHECK --check-prefix=CHECK-LE %s +// RUN: %clang_cc1 -triple arm64_be-linux-gnu -emit-llvm -o - %s | FileCheck --check-prefix=CHECK --check-prefix=CHECK-BE %s #include <stdarg.h> |