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

Unified Diff: vm/intermediate_language_test.cc

Issue 11745022: - Make Boolean 'true' and 'false' singleton VM isolate objects. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/runtime/
Patch Set: Created 7 years, 12 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 | « vm/intermediate_language_ia32.cc ('k') | vm/intermediate_language_x64.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: vm/intermediate_language_test.cc
===================================================================
--- vm/intermediate_language_test.cc (revision 16591)
+++ vm/intermediate_language_test.cc (working copy)
@@ -30,8 +30,8 @@
Value* use2 = new Value(def2);
EXPECT(!use2->Equals(use1a));
- ConstantInstr* c1 = new ConstantInstr(Bool::ZoneHandle(Bool::True()));
- ConstantInstr* c2 = new ConstantInstr(Bool::ZoneHandle(Bool::True()));
+ ConstantInstr* c1 = new ConstantInstr(Bool::True());
+ ConstantInstr* c2 = new ConstantInstr(Bool::True());
EXPECT(c1->Equals(c2));
ConstantInstr* c3 = new ConstantInstr(Object::ZoneHandle());
ConstantInstr* c4 = new ConstantInstr(Object::ZoneHandle());
« no previous file with comments | « vm/intermediate_language_ia32.cc ('k') | vm/intermediate_language_x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698