14 lines
749 B
C
14 lines
749 B
C
// RUN: %clang -### --target=x86_64 -c -Wa,--mrelax-relocations=no %s 2>&1 | FileCheck %s
|
|
|
|
// CHECK: "-cc1"
|
|
// CHECK: "-mrelax-relocations=no"
|
|
|
|
// RUN: not %clang -### --target=x86_64 -c -Wa,-mrelax-relocations=x %s 2>&1 | FileCheck %s --check-prefix=ERR
|
|
// ERR: error: unsupported argument 'x' to option '-Wa,-mrelax-relocations='
|
|
|
|
// RUN: not %clang -### --target=aarch64 -c -Wa,-mrelax-relocations=no %s 2>&1 | FileCheck %s --check-prefix=ERR2
|
|
// ERR2: error: unsupported argument '-mrelax-relocations=no' to option '-Wa,'
|
|
|
|
// RUN: not %clang -### --target=x86_64-apple-darwin -c -Wa,-mrelax-relocations=no %s 2>&1 | FileCheck %s --check-prefix=ERR3
|
|
// ERR3: error: unsupported option '-Wa,-mrelax-relocations=' for target 'x86_64-apple-darwin'
|