llvm-project/clang/test/Driver/mabi.c

7 lines
197 B
C

// RUN: %clang --target=i386-unknown-linux -mabi=ms -S %s -### 2>&1 | FileCheck --check-prefix=CHECK %s
int f() {
// CHECK: warning: argument unused during compilation: '-mabi=ms'
return 0;
}