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

Unified Diff: src/objects.h

Issue 1369123002: [Interpreter] Add interpreter support for compare ops and ToBoolean. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Compilation fix. Created 5 years, 3 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
Index: src/objects.h
diff --git a/src/objects.h b/src/objects.h
index 6838f275b9643089032532046f816e5335797637..40b346cda6c2565364d703a093f4fbe8564c8226 100644
--- a/src/objects.h
+++ b/src/objects.h
@@ -815,7 +815,7 @@ enum CompareResult {
enum class ComparisonResult {
kLessThan, // x < y
kEqual, // x = y
- kGreaterThan, // x > x
+ kGreaterThan, // x > y
kUndefined // at least one of x or y was undefined or NaN
};

Powered by Google App Engine
This is Rietveld 408576698