summaryrefslogtreecommitdiff
path: root/deps/v8/test/unittests/compiler/backend/instruction-sequence-unittest.h
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/test/unittests/compiler/backend/instruction-sequence-unittest.h')
-rw-r--r--deps/v8/test/unittests/compiler/backend/instruction-sequence-unittest.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/deps/v8/test/unittests/compiler/backend/instruction-sequence-unittest.h b/deps/v8/test/unittests/compiler/backend/instruction-sequence-unittest.h
index 82a8b3019d..b75da308f9 100644
--- a/deps/v8/test/unittests/compiler/backend/instruction-sequence-unittest.h
+++ b/deps/v8/test/unittests/compiler/backend/instruction-sequence-unittest.h
@@ -47,7 +47,6 @@ class InstructionSequenceTest : public TestWithIsolateAndZone {
kFixedRegister,
kSlot,
kFixedSlot,
- kExplicit,
kImmediate,
kNone,
kConstant,
@@ -75,17 +74,6 @@ class InstructionSequenceTest : public TestWithIsolateAndZone {
static TestOperand Same() { return TestOperand(kSameAsFirst); }
- static TestOperand ExplicitReg(int index) {
- TestOperandType type = kExplicit;
- return TestOperand(type, index);
- }
-
- static TestOperand ExplicitFPReg(int index,
- MachineRepresentation rep = kFloat64) {
- TestOperandType type = kExplicit;
- return TestOperand(type, index, rep);
- }
-
static TestOperand Reg(VReg vreg, int index = kNoValue) {
TestOperandType type = (index == kNoValue) ? kRegister : kFixedRegister;
return TestOperand(type, vreg, index);