Author: [email protected]
Date: Tue Apr 14 07:03:52 2009
New Revision: 1704

Modified:
    trunk/   (props changed)
    trunk/src/api.cc
    trunk/src/heap.cc
    trunk/src/regexp-macro-assembler-irregexp-inl.h   (props changed)
    trunk/test/mjsunit/global-load-from-eval-in-with.js   (props changed)
    trunk/test/mjsunit/local-load-from-eval.js   (props changed)
    trunk/test/mjsunit/property-load-across-eval.js   (props changed)
    trunk/test/mjsunit/regress/regress-269.js   (props changed)

Log:
Fix broken build on Mac.

Modified: trunk/src/api.cc
==============================================================================
--- trunk/src/api.cc    (original)
+++ trunk/src/api.cc    Tue Apr 14 07:03:52 2009
@@ -2373,7 +2373,7 @@


  const char* v8::V8::GetVersion() {
-  return "1.1.9";
+  return "1.1.9.1";
  }



Modified: trunk/src/heap.cc
==============================================================================
--- trunk/src/heap.cc   (original)
+++ trunk/src/heap.cc   Tue Apr 14 07:03:52 2009
@@ -374,23 +374,26 @@
  }


-static void VerifySymbolTable() {
  #ifdef DEBUG
-  // Helper class for verifying the symbol table.
-  class SymbolTableVerifier : public ObjectVisitor {
-   public:
-    SymbolTableVerifier() { }
-    void VisitPointers(Object** start, Object** end) {
-      // Visit all HeapObject pointers in [start, end).
-      for (Object** p = start; p < end; p++) {
-        if ((*p)->IsHeapObject()) {
-          // Check that the symbol is actually a symbol.
-          ASSERT((*p)->IsNull() || (*p)->IsUndefined() ||  
(*p)->IsSymbol());
-        }
+// Helper class for verifying the symbol table.
+class SymbolTableVerifier : public ObjectVisitor {
+ public:
+  SymbolTableVerifier() { }
+  void VisitPointers(Object** start, Object** end) {
+    // Visit all HeapObject pointers in [start, end).
+    for (Object** p = start; p < end; p++) {
+      if ((*p)->IsHeapObject()) {
+        // Check that the symbol is actually a symbol.
+        ASSERT((*p)->IsNull() || (*p)->IsUndefined() || (*p)->IsSymbol());
        }
      }
-  };
+  }
+};
+#endif  // DEBUG
+

+static void VerifySymbolTable() {
+#ifdef DEBUG
    SymbolTableVerifier verifier;
    SymbolTable* symbol_table = SymbolTable::cast(Heap::symbol_table());
    symbol_table->IterateElements(&verifier);

--~--~---------~--~----~------------~-------~--~----~
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
-~----------~----~----~----~------~----~------~--~---

Reply via email to