brintos

brintos / llvm-project-archived public Read only

0
0
Text · 444 B · 3fa5b54 Raw
11 lines · c
1// Should save and read back the assembly from a file2// RUN: %clang -target arm-none-linux-gnueabi -integrated-as -via-file-asm %s -### 2>&1 | FileCheck %s3// CHECK: "-cc1"4// CHECK: "-o" "[[TMP:[^"]*]]"5// CHECK: -cc1as6// CHECK: [[TMP]]7 8// Should not force using the integrated assembler9// RUN: %clang -target arm-none-linux-gnueabi -no-integrated-as -via-file-asm %s -### 2>&1 | FileCheck --check-prefix=NO_IAS %s10// NO_IAS-NOT: "-cc1as"11