You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
390 B
16 lines
390 B
// RUN: %clang -### -c -save-temps -integrated-as %s 2>&1 | FileCheck %s
|
|
|
|
// CHECK: cc1as
|
|
// CHECK: -mrelax-all
|
|
|
|
// RUN: %clang -### -fintegrated-as -c -save-temps %s 2>&1 | FileCheck %s -check-prefix FIAS
|
|
|
|
// FIAS: cc1as
|
|
|
|
// RUN: %clang -### -fno-integrated-as -S %s 2>&1 \
|
|
// RUN: | FileCheck %s -check-prefix NOFIAS
|
|
|
|
// NOFIAS-NOT: cc1as
|
|
// NOFIAS: -cc1
|
|
// NOFIAS: -no-integrated-as
|