diff options
author | Nico Weber <nicolasweber@gmx.de> | 2016-08-23 19:32:02 +0000 |
---|---|---|
committer | Nico Weber <nicolasweber@gmx.de> | 2016-08-23 19:32:02 +0000 |
commit | 8531e4912b7da328cc96d8ee4eb71ca1f81d8811 (patch) | |
tree | 01c006afa357d1313125d7b7f92dfd7d4e20f351 /clang/test/Driver/cl-options.c | |
parent | a01bece1dcbc95cb7e99421e050e27e231f6e995 (diff) | |
download | bcm5719-llvm-8531e4912b7da328cc96d8ee4eb71ca1f81d8811.tar.gz bcm5719-llvm-8531e4912b7da328cc96d8ee4eb71ca1f81d8811.zip |
clang-cl: Make /Brepro actually work.
/Brepro means we want reproducible builds, i.e. we _don't_ want the timestamp
that's needed to be compatible with the incremental linker.
https://reviews.llvm.org/D23805
llvm-svn: 279555
Diffstat (limited to 'clang/test/Driver/cl-options.c')
-rw-r--r-- | clang/test/Driver/cl-options.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/test/Driver/cl-options.c b/clang/test/Driver/cl-options.c index 3e207f2c95e..98548d7f3d6 100644 --- a/clang/test/Driver/cl-options.c +++ b/clang/test/Driver/cl-options.c @@ -437,10 +437,10 @@ // BreproDefault: "-mincremental-linker-compatible" // RUN: %clang_cl /Brepro- /Brepro /c '-###' -- %s 2>&1 | FileCheck -check-prefix=Brepro %s -// Brepro: "-mincremental-linker-compatible" +// Brepro-NOT: "-mincremental-linker-compatible" // RUN: %clang_cl /Brepro /Brepro- /c '-###' -- %s 2>&1 | FileCheck -check-prefix=Brepro_ %s -// Brepro_-NOT: "-mincremental-linker-compatible" +// Brepro_: "-mincremental-linker-compatible" // This test was super sneaky: "/Z7" means "line-tables", but "-gdwarf" occurs // later on the command line, so it should win. Interestingly the cc1 arguments |