Akira Hatanaka | 9d99bb5 | 2015-08-26 19:00:11 +0000 | [diff] [blame] | 1 | // RUN: not %clang %s -target armv7-apple-ios -mfloat-abi=hard 2>&1 | FileCheck -check-prefix=ARMV7-ERROR %s |
| 2 | // RUN: %clang %s -target armv7-apple-ios -mfloat-abi=softfp -### 2>&1 | FileCheck -check-prefix=NOERROR %s |
| 3 | // RUN: %clang %s -arch armv7 -target thumbv7-apple-darwin-eabi -mfloat-abi=hard -### 2>&1 | FileCheck -check-prefix=NOERROR %s |
| 4 | |
| 5 | // ARMV7-ERROR: unsupported option '-mfloat-abi=hard' for target 'thumbv7' |
| 6 | // NOERROR-NOT: unsupported option |