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

Unified Diff: src/runtime/runtime.h

Issue 2655223003: Revert of [tests] Make assertOptimized()/assertUnoptimized() great again. (Closed)
Patch Set: Created 3 years, 11 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
« no previous file with comments | « src/d8.cc ('k') | src/runtime/runtime-test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/runtime/runtime.h
diff --git a/src/runtime/runtime.h b/src/runtime/runtime.h
index 1fcac99591ba0bf06654c004c4674892c1ddd6f3..2df020b6159862b62d6054962dff675153574f84 100644
--- a/src/runtime/runtime.h
+++ b/src/runtime/runtime.h
@@ -1154,18 +1154,6 @@
STATIC_ASSERT(LANGUAGE_END == 2);
class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 1> {};
-// A set of bits returned by Runtime_GetOptimizationStatus.
-// These bits must be in sync with bits defined in test/mjsunit/mjsunit.js
-enum class OptimizationStatus {
- kIsFunction = 1 << 0,
- kNeverOptimize = 1 << 1,
- kAlwaysOptimize = 1 << 2,
- kMaybeDeopted = 1 << 3,
- kOptimized = 1 << 4,
- kTurboFanned = 1 << 5,
- kInterpreted = 1 << 6,
-};
-
} // namespace internal
} // namespace v8
« no previous file with comments | « src/d8.cc ('k') | src/runtime/runtime-test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698