Index: src/jsregexp.cc |
diff --git a/src/jsregexp.cc b/src/jsregexp.cc |
index 54046b2219c174b46ab5a7722e1ed6487368c276..5fa6cf49d7750689ece45a1dcf67aa36604e7ac9 100644 |
--- a/src/jsregexp.cc |
+++ b/src/jsregexp.cc |
@@ -452,10 +452,10 @@ bool RegExpImpl::CompileIrregexp(Handle<JSRegExp> re, |
&zone)) { |
// Throw an exception if we fail to parse the pattern. |
// THIS SHOULD NOT HAPPEN. We already pre-parsed it successfully once. |
- ThrowRegExpException(re, |
- pattern, |
- compile_data.error, |
- "malformed_regexp"); |
+ USE(ThrowRegExpException(re, |
+ pattern, |
+ compile_data.error, |
+ "malformed_regexp")); |
return false; |
} |
RegExpEngine::CompilationResult result = |