Home | History | Annotate | Download | only in Driver
      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
      7