mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-27 13:16:08 +00:00

Fixes PR57976. Reviewed By: erichkeane, arichardson, MaskRay Differential Revision: https://reviews.llvm.org/D134671
7 lines
197 B
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;
|
|
}
|