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

Unified Diff: runtime/vm/bit_vector_test.cc

Issue 12638040: Compute local variable liveness before translation to SSA. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 9 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
Index: runtime/vm/bit_vector_test.cc
diff --git a/runtime/vm/bit_vector_test.cc b/runtime/vm/bit_vector_test.cc
index de2fe4fc37686bf58503b32b5f547e6aa7541e9a..83bc2cf49800b5a7813b9bb990599213aaf13b9a 100644
--- a/runtime/vm/bit_vector_test.cc
+++ b/runtime/vm/bit_vector_test.cc
@@ -91,7 +91,7 @@ TEST_CASE(BitVector) {
b->Add(1);
b->Add(31);
b->Add(32);
- a->Intersect(*b);
+ a->Intersect(b);
EXPECT_EQ(true, a->Equals(*b));
}
« no previous file with comments | « runtime/vm/bit_vector.cc ('k') | runtime/vm/compiler.cc » ('j') | runtime/vm/flow_graph.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698