Mercurial > hg > CbC > CbC_llvm
annotate clang/test/Driver/no-integrated-as-win.c @ 150:1d019706d866
LLVM10
author | anatofuz |
---|---|
date | Thu, 13 Feb 2020 15:10:13 +0900 |
parents | |
children | 1f2b6ac9f198 |
rev | line source |
---|---|
150 | 1 // RUN: %clang -target x86_64-pc-win32 -### -no-integrated-as %s -c 2>&1 | FileCheck %s |
2 // CHECK: there is no external assembler that can be used on this platform | |
3 | |
4 // But there is for mingw. The source file should only be mentioned once for | |
5 // the compile step. | |
6 // RUN: %clang -target i686-pc-mingw32 -### -no-integrated-as %s -c 2>&1 | FileCheck -check-prefix=MINGW %s | |
7 // MINGW: "-cc1" | |
8 // MINGW: "-main-file-name" "no-integrated-as-win.c" | |
9 // MINGW: "-x" "c" "{{.*}}no-integrated-as-win.c" | |
10 // The assembler goes here, but its name depends on PATH. | |
11 // MINGW-NOT: no-integrated-as-win.c |