1*67e74705SXin Li // RUN: not %clang %s -target armv7-apple-ios -mfloat-abi=hard 2>&1 | FileCheck -check-prefix=ARMV7-ERROR %s 2*67e74705SXin Li // RUN: %clang %s -target armv7-apple-ios -mfloat-abi=softfp -### 2>&1 | FileCheck -check-prefix=NOERROR %s 3*67e74705SXin Li // RUN: %clang %s -arch armv7 -target thumbv7-apple-darwin-eabi -mfloat-abi=hard -### 2>&1 | FileCheck -check-prefix=NOERROR %s 4*67e74705SXin Li 5*67e74705SXin Li // ARMV7-ERROR: unsupported option '-mfloat-abi=hard' for target 'thumbv7' 6*67e74705SXin Li // NOERROR-NOT: unsupported option 7