Author: [email protected]
Date: Fri Jun 12 03:25:05 2009
New Revision: 2150

Modified:
    branches/bleeding_edge/src/runtime.cc

Log:
Move the default return handling to please some versions of gcc.

[email protected]
Review URL: http://codereview.chromium.org/125043

Modified: branches/bleeding_edge/src/runtime.cc
==============================================================================
--- branches/bleeding_edge/src/runtime.cc       (original)
+++ branches/bleeding_edge/src/runtime.cc       Fri Jun 12 03:25:05 2009
@@ -6336,10 +6336,9 @@
          // Materialize the content of the closure scope into a JSObject.
          return MaterializeClosure(CurrentContext());
          break;
-      default:
-        UNREACHABLE();
-        return Handle<JSObject>();
      }
+    UNREACHABLE();
+    return Handle<JSObject>();
    }

    // Return the context for this scope. For the local context there might  
not

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

Reply via email to