mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-25 14:28:54 -04:00

The windows target does not support using an external assembler so the test case was failing with this error: error: there is no external assembler that can be used on this platform The test was updated to always explicitly pass a target that has both an interal and external assembler. llvm-svn: 196854
11 lines
444 B
C
11 lines
444 B
C
// Should save and read back the assembly from a file
|
|
// RUN: %clang -target arm-none-linux-gnueabi -integrated-as -via-file-asm %s -### 2>&1 | FileCheck %s
|
|
// CHECK: "-cc1"
|
|
// CHECK: "-o" "[[TMP:[^"]*]]"
|
|
// CHECK: -cc1as
|
|
// CHECK: [[TMP]]
|
|
|
|
// Should not force using the integrated assembler
|
|
// RUN: %clang -target arm-none-linux-gnueabi -no-integrated-as -via-file-asm %s -### 2>&1 | FileCheck --check-prefix=NO_IAS %s
|
|
// NO_IAS-NOT: "-cc1as"
|