summaryrefslogtreecommitdiffstats
path: root/compiler/common_compiler_test.h
diff options
context:
space:
mode:
authorIan Rogers <irogers@google.com>2014-03-01 09:16:49 -0800
committerIan Rogers <irogers@google.com>2014-03-01 09:16:49 -0800
commit3d504075f7c1204d581923460754bf6d3714b13f (patch)
treee095ee11d308f264b3dfb9f4c510f14fe6b1259c /compiler/common_compiler_test.h
parente4a74a6ac8d1486b1227504044a60002e69a9fec (diff)
downloadandroid_art-3d504075f7c1204d581923460754bf6d3714b13f.tar.gz
android_art-3d504075f7c1204d581923460754bf6d3714b13f.tar.bz2
android_art-3d504075f7c1204d581923460754bf6d3714b13f.zip
Make out arguments non-reference types.
Also, tidy some portable related code. Change-Id: I67c8aa52eef8b556ca117ecda1b1e75465ba06a5
Diffstat (limited to 'compiler/common_compiler_test.h')
-rw-r--r--compiler/common_compiler_test.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/common_compiler_test.h b/compiler/common_compiler_test.h
index 9bcc040dfc..d034b7922e 100644
--- a/compiler/common_compiler_test.h
+++ b/compiler/common_compiler_test.h
@@ -353,7 +353,7 @@ class CommonCompilerTest : public CommonRuntimeTest {
CHECK(method != nullptr);
TimingLogger timings("CommonTest::CompileMethod", false, false);
timings.StartSplit("CompileOne");
- compiler_driver_->CompileOne(method, timings);
+ compiler_driver_->CompileOne(method, &timings);
MakeExecutable(method);
timings.EndSplit();
}