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

Unified Diff: test/cctest/interpreter/bytecode_expectations/CompareTypeOf.golden

Issue 2793923002: [Interpreter] Optimize code of the form 'if (x === undefined)'. (Closed)
Patch Set: Rebase Created 3 years, 9 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: test/cctest/interpreter/bytecode_expectations/CompareTypeOf.golden
diff --git a/test/cctest/interpreter/bytecode_expectations/CompareTypeOf.golden b/test/cctest/interpreter/bytecode_expectations/CompareTypeOf.golden
index 55d8bb073fbf13e238621e273eeb075d73784b1c..f2295a79a992cc517cfdc23276031f62c6b00039 100644
--- a/test/cctest/interpreter/bytecode_expectations/CompareTypeOf.golden
+++ b/test/cctest/interpreter/bytecode_expectations/CompareTypeOf.golden
@@ -15,7 +15,7 @@ bytecode array length: 6
bytecodes: [
/* 30 E> */ B(StackCheck),
/* 34 S> */ B(LdaSmi), I8(1),
- /* 51 E> */ B(TestTypeOf), U8(0),
+ B(TestTypeOf), U8(0),
/* 65 S> */ B(Return),
]
constant pool: [
@@ -33,7 +33,7 @@ bytecode array length: 6
bytecodes: [
/* 30 E> */ B(StackCheck),
/* 34 S> */ B(LdaConstant), U8(0),
- /* 50 E> */ B(TestTypeOf), U8(1),
+ B(TestTypeOf), U8(1),
/* 69 S> */ B(Return),
]
constant pool: [
@@ -52,7 +52,7 @@ bytecode array length: 5
bytecodes: [
/* 30 E> */ B(StackCheck),
/* 34 S> */ B(LdaTrue),
- /* 54 E> */ B(TestTypeOf), U8(3),
+ B(TestTypeOf), U8(3),
/* 68 S> */ B(Return),
]
constant pool: [
@@ -70,7 +70,7 @@ bytecode array length: 5
bytecodes: [
/* 30 E> */ B(StackCheck),
/* 34 S> */ B(LdaUndefined),
- /* 50 E> */ B(TestTypeOf), U8(1),
+ B(TestTypeOf), U8(1),
/* 73 S> */ B(Return),
]
constant pool: [

Powered by Google App Engine
This is Rietveld 408576698