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

Unified Diff: src/IceCompiler.cpp

Issue 1918213003: Subzero, Wasm: Dynamically reallocate read buffer. Runtime improvements. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Formatting Created 4 years, 8 months 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
Index: src/IceCompiler.cpp
diff --git a/src/IceCompiler.cpp b/src/IceCompiler.cpp
index 13545c7a0837836f23fdd82c11bed08713ea90e2..d9a8239041e77fd55e3efb54d103998423905c7a 100644
--- a/src/IceCompiler.cpp
+++ b/src/IceCompiler.cpp
@@ -56,8 +56,7 @@ bool llvmIRInput(const std::string &Filename) {
}
bool wasmInput(const std::string &Filename) {
- return BuildDefs::llvmIrAsInput() &&
- std::regex_match(Filename, std::regex(".*\\.wasm"));
+ return std::regex_match(Filename, std::regex(".*\\.wasm"));
Jim Stichnoth 2016/04/26 22:36:43 Instead of removing BuildDefs::llvmIrAsInput(), ca
Eric Holk 2016/04/27 21:45:20 Done.
}
} // end of anonymous namespace

Powered by Google App Engine
This is Rietveld 408576698