summaryrefslogtreecommitdiff
path: root/compiler/optimizing/codegen_test.cc
diff options
context:
space:
mode:
author Treehugger Robot <treehugger-gerrit@google.com> 2016-08-12 20:54:05 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2016-08-12 20:54:06 +0000
commitba1642dec60c053895c259deac429463669ddc9b (patch)
tree57f8a1d11b4774b9a1ea38bec459ee1127ce3595 /compiler/optimizing/codegen_test.cc
parent82d33b295fecf472a98435b7fc8e4652d4c78542 (diff)
parent1aa559d49b55b72de2da77734dc69704733af269 (diff)
Merge "Use TestCodeGeneratorX86 in codegen unit tests"
Diffstat (limited to 'compiler/optimizing/codegen_test.cc')
-rw-r--r--compiler/optimizing/codegen_test.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/optimizing/codegen_test.cc b/compiler/optimizing/codegen_test.cc
index fe9a7af250..18db507c48 100644
--- a/compiler/optimizing/codegen_test.cc
+++ b/compiler/optimizing/codegen_test.cc
@@ -247,7 +247,7 @@ static void RunCode(InstructionSet target_isa,
} else if (target_isa == kX86) {
std::unique_ptr<const X86InstructionSetFeatures> features_x86(
X86InstructionSetFeatures::FromCppDefines());
- x86::CodeGeneratorX86 codegenX86(graph, *features_x86.get(), compiler_options);
+ TestCodeGeneratorX86 codegenX86(graph, *features_x86.get(), compiler_options);
RunCode(&codegenX86, graph, hook_before_codegen, has_result, expected);
} else if (target_isa == kX86_64) {
std::unique_ptr<const X86_64InstructionSetFeatures> features_x86_64(