Index: test/mjsunit/strict-mode.js |
diff --git a/test/mjsunit/strict-mode.js b/test/mjsunit/strict-mode.js |
index 63dc9d0bda829b631e9d0d667ced454b871bc7d9..f7f95da88c99592e792e9e6b45b13d2ce4b1c545 100644 |
--- a/test/mjsunit/strict-mode.js |
+++ b/test/mjsunit/strict-mode.js |
@@ -1149,7 +1149,7 @@ function CheckArgumentsPillDescriptor(func, name) { |
function strict() { |
"use strict"; |
- // Returning result via local variable to avoid tail call optimization. |
+ // Returning result via local variable to avoid tail call elimination. |
var res = return_my_caller(); |
return res; |
} |
@@ -1165,7 +1165,7 @@ function CheckArgumentsPillDescriptor(func, name) { |
(function TestNonStrictFunctionCallerPill() { |
function strict(n) { |
"use strict"; |
- // Returning result via local variable to avoid tail call optimization. |
+ // Returning result via local variable to avoid tail call elimination. |
var res = non_strict(n); |
return res; |
} |
@@ -1195,7 +1195,7 @@ function CheckArgumentsPillDescriptor(func, name) { |
(function TestNonStrictFunctionCallerDescriptorPill() { |
function strict(n) { |
"use strict"; |
- // Returning result via local variable to avoid tail call optimization. |
+ // Returning result via local variable to avoid tail call elimination. |
var res = non_strict(n); |
return res; |
} |