diff options
author | Douglas Yung <douglas.yung@sony.com> | 2018-05-01 23:32:09 +0000 |
---|---|---|
committer | Douglas Yung <douglas.yung@sony.com> | 2018-05-01 23:32:09 +0000 |
commit | ddbd2b530c42d46eff1ad1360eb6cc5664f52bb3 (patch) | |
tree | c0b8ae0afe4fdd5aa7b1107eaca0ec01e469a0ca /clang/test/Driver/config-file4.c | |
parent | 63e3af838c52f3e68e2402eb9a247d1cd24b26b2 (diff) | |
download | bcm5719-llvm-ddbd2b530c42d46eff1ad1360eb6cc5664f52bb3.tar.gz bcm5719-llvm-ddbd2b530c42d46eff1ad1360eb6cc5664f52bb3.zip |
This test fails if there is no integrated assembler, so change the -c option to -S as it is not important to the test and allows it to pass when there is no integrated assembler.
llvm-svn: 331318
Diffstat (limited to 'clang/test/Driver/config-file4.c')
-rw-r--r-- | clang/test/Driver/config-file4.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/Driver/config-file4.c b/clang/test/Driver/config-file4.c index 9231ab64e15..19ef7d50cd4 100644 --- a/clang/test/Driver/config-file4.c +++ b/clang/test/Driver/config-file4.c @@ -1,2 +1,2 @@ -// RUN: %clang --config %S/Inputs/empty.cfg -Wall -Wextra -Wformat -Wstrict-aliasing -Wshadow -Wpacked -Winline -Wimplicit-function-declaration -c %s -O2 -o /dev/null -v 2>&1 | FileCheck %s -check-prefix PR37196 +// RUN: %clang --config %S/Inputs/empty.cfg -Wall -Wextra -Wformat -Wstrict-aliasing -Wshadow -Wpacked -Winline -Wimplicit-function-declaration -S %s -O2 -o /dev/null -v 2>&1 | FileCheck %s -check-prefix PR37196 // PR37196: Configuration file: {{.*}}empty.cfg |