Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(428)

Unified Diff: src/llvm2ice.cpp

Issue 732583002: Subzero: Auto-set -build-on-read=0 for .ll input files. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « pydir/crosstest.py ('k') | tests_lit/reader_tests/insertextract-err.ll » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/llvm2ice.cpp
diff --git a/src/llvm2ice.cpp b/src/llvm2ice.cpp
index 4dd24449766f6e873cd0148537ba182917f559cf..12c241a8b7a2c180fa1c759b41c2d83915ec406a 100644
--- a/src/llvm2ice.cpp
+++ b/src/llvm2ice.cpp
@@ -284,6 +284,13 @@ int main(int argc, char **argv) {
Flags.TranslateOnly = TranslateOnly;
Flags.DisableIRGeneration = DisableIRGeneration;
+ // Force -build-on-read=0 for .ll files.
+ const std::string LLSuffix = ".ll";
+ if (IRFilename.length() >= LLSuffix.length() &&
+ IRFilename.compare(IRFilename.length() - LLSuffix.length(),
+ LLSuffix.length(), LLSuffix) == 0)
+ BuildOnRead = false;
+
Ice::GlobalContext Ctx(Ls, Os, VMask, TargetArch, OptLevel, TestPrefix,
Flags);
« no previous file with comments | « pydir/crosstest.py ('k') | tests_lit/reader_tests/insertextract-err.ll » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698