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

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: Code review changes 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
« no previous file with comments | « runtime/wasm-runtime.cpp ('k') | src/WasmTranslator.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/IceCompiler.cpp
diff --git a/src/IceCompiler.cpp b/src/IceCompiler.cpp
index 13545c7a0837836f23fdd82c11bed08713ea90e2..fbe05777d1b62cd43cf5ce8546b3baaf63a326c5 100644
--- a/src/IceCompiler.cpp
+++ b/src/IceCompiler.cpp
@@ -56,7 +56,7 @@ bool llvmIRInput(const std::string &Filename) {
}
bool wasmInput(const std::string &Filename) {
- return BuildDefs::llvmIrAsInput() &&
+ return BuildDefs::wasm() &&
std::regex_match(Filename, std::regex(".*\\.wasm"));
}
« no previous file with comments | « runtime/wasm-runtime.cpp ('k') | src/WasmTranslator.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698