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

Unified Diff: test/compiler-unittests/machine-operator-unittest.cc

Issue 472823003: Fix NaCl build. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 4 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/compiler-unittests/machine-operator-unittest.cc
diff --git a/test/compiler-unittests/machine-operator-unittest.cc b/test/compiler-unittests/machine-operator-unittest.cc
index 4662e20101c7c448e1eb987762e20ab9d4f1bed2..d09665895d5c0896371a270d621a0ab9c2125f31 100644
--- a/test/compiler-unittests/machine-operator-unittest.cc
+++ b/test/compiler-unittests/machine-operator-unittest.cc
@@ -19,14 +19,14 @@ class MachineOperatorCommonTest : public CompilerTestWithParam<MachineType> {
virtual ~MachineOperatorCommonTest() { EXPECT_THAT(machine_, IsNull()); }
virtual void SetUp() V8_OVERRIDE {
- CompilerTestWithParam::SetUp();
+ CompilerTestWithParam<MachineType>::SetUp();
machine_ = new MachineOperatorBuilder(zone(), GetParam());
}
virtual void TearDown() V8_OVERRIDE {
delete machine_;
machine_ = NULL;
- CompilerTestWithParam::TearDown();
+ CompilerTestWithParam<MachineType>::TearDown();
}
protected:
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698