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

Unified Diff: runtime/vm/intermediate_language_x64.cc

Issue 2975913002: Temporarily back out newly introduced assertions to fix buildbots (Closed)
Patch Set: Created 3 years, 5 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/vm/intermediate_language_arm.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/intermediate_language_x64.cc
diff --git a/runtime/vm/intermediate_language_x64.cc b/runtime/vm/intermediate_language_x64.cc
index 69d1586610b122c6ce0a066053bd82f6929db2bd..b3c574a17f198351d61e03cb5343dbf35fa8d63c 100644
--- a/runtime/vm/intermediate_language_x64.cc
+++ b/runtime/vm/intermediate_language_x64.cc
@@ -6072,8 +6072,9 @@ void ShiftMintOpInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
ASSERT(locs()->in(1).constant().IsSmi());
const int64_t shift =
reinterpret_cast<int64_t>(locs()->in(1).constant().raw()) >> 1;
- ASSERT(!has_shift_count_check());
- ASSERT((0 <= shift) && (shift < 64));
+ // TODO(alexmarkov): revise and uncomment the following assertions
+ // ASSERT(!has_shift_count_check());
+ // ASSERT((0 <= shift) && (shift < 64));
switch (op_kind()) {
case Token::kSHR:
__ sarq(left, Immediate(shift));
« no previous file with comments | « runtime/vm/intermediate_language_arm.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698