Chromium Code Reviews| 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")); |
|
John
2016/04/27 02:28:20
why did this change?
Eric Holk
2016/04/27 21:45:20
I found out wasm support was always being disabled
|
| } |
| } // end of anonymous namespace |