Commit c26d0b5f authored by bmeurer@chromium.org's avatar bmeurer@chromium.org

Fix NaCl build.

TBR=jarin@chromium.org

Review URL: https://codereview.chromium.org/472823003

git-svn-id: https://v8.googlecode.com/svn/branches/bleeding_edge@23187 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent 7068a4ea
...@@ -19,14 +19,14 @@ class MachineOperatorCommonTest : public CompilerTestWithParam<MachineType> { ...@@ -19,14 +19,14 @@ class MachineOperatorCommonTest : public CompilerTestWithParam<MachineType> {
virtual ~MachineOperatorCommonTest() { EXPECT_THAT(machine_, IsNull()); } virtual ~MachineOperatorCommonTest() { EXPECT_THAT(machine_, IsNull()); }
virtual void SetUp() V8_OVERRIDE { virtual void SetUp() V8_OVERRIDE {
CompilerTestWithParam::SetUp(); CompilerTestWithParam<MachineType>::SetUp();
machine_ = new MachineOperatorBuilder(zone(), GetParam()); machine_ = new MachineOperatorBuilder(zone(), GetParam());
} }
virtual void TearDown() V8_OVERRIDE { virtual void TearDown() V8_OVERRIDE {
delete machine_; delete machine_;
machine_ = NULL; machine_ = NULL;
CompilerTestWithParam::TearDown(); CompilerTestWithParam<MachineType>::TearDown();
} }
protected: protected:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment