| Index: src/variables.cc
|
| diff --git a/src/variables.cc b/src/variables.cc
|
| index fa7ce1b0c550e15ae6fa4a1ba3b87e330c2283d3..0502722d91c3ed1c9c5767713b420af530ec991c 100644
|
| --- a/src/variables.cc
|
| +++ b/src/variables.cc
|
| @@ -1,4 +1,4 @@
|
| -// Copyright 2006-2008 the V8 project authors. All rights reserved.
|
| +// Copyright 2011 the V8 project authors. All rights reserved.
|
| // Redistribution and use in source and binary forms, with or without
|
| // modification, are permitted provided that the following conditions are
|
| // met:
|
| @@ -35,26 +35,8 @@ namespace v8 {
|
| namespace internal {
|
|
|
| // ----------------------------------------------------------------------------
|
| -// Implementation StaticType.
|
| -
|
| -
|
| -const char* StaticType::Type2String(StaticType* type) {
|
| - switch (type->kind_) {
|
| - case UNKNOWN:
|
| - return "UNKNOWN";
|
| - case LIKELY_SMI:
|
| - return "LIKELY_SMI";
|
| - default:
|
| - UNREACHABLE();
|
| - }
|
| - return "UNREACHABLE";
|
| -}
|
| -
|
| -
|
| -// ----------------------------------------------------------------------------
|
| // Implementation Variable.
|
|
|
| -
|
| const char* Variable::Mode2String(Mode mode) {
|
| switch (mode) {
|
| case VAR: return "VAR";
|
|
|