Revision: 19986
Author:   [email protected]
Date:     Mon Mar 17 12:17:13 2014 UTC
Log:      Fix Windows compile problem.

BUG=
[email protected]

Review URL: https://codereview.chromium.org/201133006
http://code.google.com/p/v8/source/detail?r=19986

Modified:
 /branches/bleeding_edge/test/cctest/test-api.cc

=======================================
--- /branches/bleeding_edge/test/cctest/test-api.cc Mon Mar 17 10:52:33 2014 UTC +++ /branches/bleeding_edge/test/cctest/test-api.cc Mon Mar 17 12:17:13 2014 UTC
@@ -18745,7 +18745,7 @@
   CHECK(!obj.IsEmpty());

   CcTest::heap()->CollectAllGarbage(
-      i::Heap::Heap::kAbortIncrementalMarkingMask);
+      i::Heap::kAbortIncrementalMarkingMask);
 }


@@ -18765,7 +18765,7 @@
   CHECK(!obj.IsEmpty());

   CcTest::heap()->CollectAllGarbage(
-      i::Heap::Heap::kAbortIncrementalMarkingMask);
+      i::Heap::kAbortIncrementalMarkingMask);
 }


@@ -18841,7 +18841,7 @@
   isolate->AddGCPrologueCallback(PrologueCallbackAlloc);
   isolate->AddGCEpilogueCallback(EpilogueCallbackAlloc);
   CcTest::heap()->CollectAllGarbage(
-      i::Heap::Heap::kAbortIncrementalMarkingMask);
+      i::Heap::kAbortIncrementalMarkingMask);
   CHECK_EQ(1, prologue_call_count_alloc);
   CHECK_EQ(1, epilogue_call_count_alloc);
   isolate->RemoveGCPrologueCallback(PrologueCallbackAlloc);

--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
--- You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to