diff options
author | Andrey Turetskiy <andrey.turetskiy@gmail.com> | 2016-06-16 12:26:20 +0000 |
---|---|---|
committer | Andrey Turetskiy <andrey.turetskiy@gmail.com> | 2016-06-16 12:26:20 +0000 |
commit | 83491bb7a533af4573597d42183ae92be353719a (patch) | |
tree | 17ce586f5b6d72970eb3b90bfc642c121d89ffbb | |
parent | 04848f9511e8c7ca941a6ea948fb21712c977ee8 (diff) | |
download | bcm5719-llvm-83491bb7a533af4573597d42183ae92be353719a.tar.gz bcm5719-llvm-83491bb7a533af4573597d42183ae92be353719a.zip |
Patch "Compilation for Intel MCU (Part 2/3)" caused the clang-x64-ninja-win7
buildbot to fail because of inaccurate CHECK in the test. This is a quick fix
for the test to make it platform independent.
llvm-svn: 272887
-rw-r--r-- | clang/test/Driver/miamcu-opt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/test/Driver/miamcu-opt.c b/clang/test/Driver/miamcu-opt.c index c53ebfdadfe..256a5bddac3 100644 --- a/clang/test/Driver/miamcu-opt.c +++ b/clang/test/Driver/miamcu-opt.c @@ -11,13 +11,13 @@ // NOT-X86: error: unsupported option '-miamcu' for target 'armv8---eabi' -// CHECK: "-cc1" +// CHECK: "{{.*}}clang{{.*}}" "-cc1" // CHECK: "-triple" "i586-intel-elfiamcu" // CHECK: "-static-define" // CHECK: "-mfloat-abi" "soft" // CHECK: "-mstack-alignment=4" -// CHECK: bin/ld +// CHECK: "{{.*}}ld{{(.exe)?}}" // CHECK: "-m" "elf_iamcu" // CHECK: "-static" // CHECK-NOT: crt1 |