Index: src/arm/lithium-arm.h |
diff --git a/src/arm/lithium-arm.h b/src/arm/lithium-arm.h |
index 616b2da7187f58d2b609206c84b851024b1e9a45..171d0f6ffd36d8a1a35c4376b80d2de084b6ad4e 100644 |
--- a/src/arm/lithium-arm.h |
+++ b/src/arm/lithium-arm.h |
@@ -79,6 +79,7 @@ class LCodeGen; |
V(CmpMapAndBranch) \ |
V(CmpT) \ |
V(ConstantD) \ |
+ V(ConstantE) \ |
V(ConstantI) \ |
V(ConstantS) \ |
V(ConstantT) \ |
@@ -1232,6 +1233,15 @@ class LConstantD: public LTemplateInstruction<1, 0, 0> { |
}; |
+class LConstantE: public LTemplateInstruction<1, 0, 0> { |
+ public: |
+ DECLARE_CONCRETE_INSTRUCTION(ConstantE, "constant-e") |
+ DECLARE_HYDROGEN_ACCESSOR(Constant) |
+ |
+ ExternalReference value() const { return hydrogen()->ExternalValue(); } |
+}; |
+ |
+ |
class LConstantT: public LTemplateInstruction<1, 0, 0> { |
public: |
DECLARE_CONCRETE_INSTRUCTION(ConstantT, "constant-t") |