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

Unified Diff: test/cctest/compiler/test-run-properties.cc

Issue 1372513003: [turbofan] Rename --context-specialization to --function-context-specialization. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: 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
« no previous file with comments | « test/cctest/compiler/test-run-inlining.cc ('k') | test/cctest/test-serialize.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/cctest/compiler/test-run-properties.cc
diff --git a/test/cctest/compiler/test-run-properties.cc b/test/cctest/compiler/test-run-properties.cc
index b7677f7fd207fbeafb2b3a7eb8690d2bc9bbf24d..f2d72e4c4edbabc24019625ce6f2de3c352a5c7c 100644
--- a/test/cctest/compiler/test-run-properties.cc
+++ b/test/cctest/compiler/test-run-properties.cc
@@ -41,9 +41,9 @@ static void TypedArrayLoadHelper(const char* array_type) {
values_buffer.start(), array_type, arraysize(kValues),
values_buffer.start(), array_type, array_type);
- FunctionTester T(
- source_buffer.start(),
- CompilationInfo::kContextSpecializing | CompilationInfo::kTypingEnabled);
+ FunctionTester T(source_buffer.start(),
+ CompilationInfo::kFunctionContextSpecializing |
+ CompilationInfo::kTypingEnabled);
for (size_t i = 0; i < arraysize(kValues); ++i) {
for (size_t j = 0; j < arraysize(kValues); ++j) {
volatile U value_a = static_cast<U>(kValues[i]);
@@ -109,9 +109,9 @@ static void TypedArrayStoreHelper(const char* array_type) {
values_buffer.start(), array_type, arraysize(kValues),
values_buffer.start(), array_type, array_type);
- FunctionTester T(
- source_buffer.start(),
- CompilationInfo::kContextSpecializing | CompilationInfo::kTypingEnabled);
+ FunctionTester T(source_buffer.start(),
+ CompilationInfo::kFunctionContextSpecializing |
+ CompilationInfo::kTypingEnabled);
for (size_t i = 0; i < arraysize(kValues); ++i) {
for (size_t j = 0; j < arraysize(kValues); ++j) {
volatile U value_a = static_cast<U>(kValues[i]);
« no previous file with comments | « test/cctest/compiler/test-run-inlining.cc ('k') | test/cctest/test-serialize.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698