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

Unified Diff: src/code-stub-assembler.h

Issue 2413653006: [turbofan] Modifies the --turbo-verify-machine-graph flag to act as a filter. (Closed)
Patch Set: Fixes interpreter unit test. Created 4 years, 2 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 | « no previous file | src/compiler/pipeline.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/code-stub-assembler.h
diff --git a/src/code-stub-assembler.h b/src/code-stub-assembler.h
index 087d6e3a75a6d8b12bf6cb416c731634870f6c88..e453676fefe289b447794e7c41d28b059e7739cf 100644
--- a/src/code-stub-assembler.h
+++ b/src/code-stub-assembler.h
@@ -135,7 +135,8 @@ class CodeStubAssembler : public compiler::CodeAssembler {
// Computes a * b for Smi inputs a and b; result is not necessarily a Smi.
compiler::Node* SmiMul(compiler::Node* a, compiler::Node* b);
compiler::Node* SmiOr(compiler::Node* a, compiler::Node* b) {
- return WordOr(a, b);
+ return BitcastWordToTaggedSigned(
+ WordOr(BitcastTaggedToWord(a), BitcastTaggedToWord(b)));
}
// Allocate an object of the given size.
« no previous file with comments | « no previous file | src/compiler/pipeline.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698