diff options
author | Eric Christopher <echristo@gmail.com> | 2014-12-18 02:08:55 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gmail.com> | 2014-12-18 02:08:55 +0000 |
commit | 560cc4fb44e11c0153f985639375598b53831e18 (patch) | |
tree | 5411494cdcbf8d64dbd0a26164718661e1dcd5b3 /clang/test/CodeGenCXX/homogeneous-aggregates.cpp | |
parent | 7a8b31d631acb9c1b7b1e654fcbfd476ac502c0f (diff) | |
download | bcm5719-llvm-560cc4fb44e11c0153f985639375598b53831e18.tar.gz bcm5719-llvm-560cc4fb44e11c0153f985639375598b53831e18.zip |
Make sure that arm-linux-gnu is still the apcs-gnu ABI when we
use clang -cc1 matching the front end and backend. Fix up a couple
of tests that were testing aapcs for arm-linux-gnu.
The test that removes the aapcs abi calling convention removes
them because the default triple matches what the backend uses
for the calling convention there and so it doesn't need to be
explicitly stated - see the code in TargetInfo.cpp.
llvm-svn: 224491
Diffstat (limited to 'clang/test/CodeGenCXX/homogeneous-aggregates.cpp')
-rw-r--r-- | clang/test/CodeGenCXX/homogeneous-aggregates.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/CodeGenCXX/homogeneous-aggregates.cpp b/clang/test/CodeGenCXX/homogeneous-aggregates.cpp index 77c6b3a527b..94813f35788 100644 --- a/clang/test/CodeGenCXX/homogeneous-aggregates.cpp +++ b/clang/test/CodeGenCXX/homogeneous-aggregates.cpp @@ -1,5 +1,5 @@ // RUN: %clang_cc1 -triple powerpc64le-unknown-linux-gnu -emit-llvm -o - %s | FileCheck %s --check-prefix=PPC -// RUN: %clang_cc1 -mfloat-abi hard -triple armv7-unknown-linux-gnu -emit-llvm -o - %s | FileCheck %s --check-prefix=ARM32 +// RUN: %clang_cc1 -mfloat-abi hard -triple armv7-unknown-linux-gnueabi -emit-llvm -o - %s | FileCheck %s --check-prefix=ARM32 // RUN: %clang_cc1 -mfloat-abi hard -triple aarch64-unknown-linux-gnu -emit-llvm -o - %s | FileCheck %s --check-prefix=ARM64 // RUN: %clang_cc1 -mfloat-abi hard -triple x86_64-unknown-windows-gnu -emit-llvm -o - %s | FileCheck %s --check-prefix=X64 |