diff options
author | Brad Smith <brad@comstyle.com> | 2018-07-22 22:04:28 +0000 |
---|---|---|
committer | Brad Smith <brad@comstyle.com> | 2018-07-22 22:04:28 +0000 |
commit | aa87753097b1302d268a4f27ee1251f065379f56 (patch) | |
tree | 6863212f1a2c00375ac4264240311f647bb34ffb | |
parent | 6fa95b8787c1b4e391fa440e6d4c01572631125b (diff) | |
download | bcm5719-llvm-aa87753097b1302d268a4f27ee1251f065379f56.tar.gz bcm5719-llvm-aa87753097b1302d268a4f27ee1251f065379f56.zip |
Fix the test
llvm-svn: 337663
-rw-r--r-- | clang/test/Driver/openbsd.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/clang/test/Driver/openbsd.c b/clang/test/Driver/openbsd.c index 77869697536..d3846b7acf6 100644 --- a/clang/test/Driver/openbsd.c +++ b/clang/test/Driver/openbsd.c @@ -110,4 +110,5 @@ // Check ARM float ABI // RUN: %clang -target arm-unknown-openbsd -### -c %s 2>&1 \ // RUN: | FileCheck -check-prefix=CHECK-ARM-FLOAT-ABI %s -// CHECK-ARM-FLOAT-ABI: "-mfloat-abi" "softfp" +// CHECK-ARM-FLOAT-ABI-NOT: "-target-feature" "+soft-float" +// CHECK-ARM-FLOAT-ABI: "-target-feature" "+soft-float-abi" |