diff options
author | Akira Hatanaka <ahatanaka@apple.com> | 2015-07-25 00:33:57 +0000 |
---|---|---|
committer | Akira Hatanaka <ahatanaka@apple.com> | 2015-07-25 00:33:57 +0000 |
commit | 2da6ec2ee6da456e13c61e0c7a913bcd9b6b9224 (patch) | |
tree | 7f2673419544e4d23f9cee1d6377b4b82d4cab95 | |
parent | 35ccb0f7d48e867621b0c8ebb618a74dd0d4d269 (diff) | |
download | bcm5719-llvm-2da6ec2ee6da456e13c61e0c7a913bcd9b6b9224.tar.gz bcm5719-llvm-2da6ec2ee6da456e13c61e0c7a913bcd9b6b9224.zip |
Fix test case.
This is a follow-up to r243185, which made changes to pass subtarget
feature "+reserve-x18" instead of backend option "-aarch64-reserve-x18".
llvm-svn: 243189
-rw-r--r-- | clang/test/Driver/aarch64-fixed-x18.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/Driver/aarch64-fixed-x18.c b/clang/test/Driver/aarch64-fixed-x18.c index 35d0caf0321..631865f9aa4 100644 --- a/clang/test/Driver/aarch64-fixed-x18.c +++ b/clang/test/Driver/aarch64-fixed-x18.c @@ -1,4 +1,4 @@ // RUN: %clang -target aarch64-none-gnu -ffixed-x18 -### %s 2> %t // RUN: FileCheck --check-prefix=CHECK-FIXED-X18 < %t %s -// CHECK-FIXED-X18: "-backend-option" "-aarch64-reserve-x18" +// CHECK-FIXED-X18: "-target-feature" "+reserve-x18" |