Index: src/ia32/lithium-ia32.h |
diff --git a/src/ia32/lithium-ia32.h b/src/ia32/lithium-ia32.h |
index 5acf29ca5a6f6ef97713ccf6f423bf21ce589666..6a2aa006540f4e295a897932aac3591a6bd264cc 100644 |
--- a/src/ia32/lithium-ia32.h |
+++ b/src/ia32/lithium-ia32.h |
@@ -80,6 +80,7 @@ class LCodeGen; |
V(CmpMapAndBranch) \ |
V(CmpT) \ |
V(ConstantD) \ |
+ V(ConstantE) \ |
V(ConstantI) \ |
V(ConstantS) \ |
V(ConstantT) \ |
@@ -1208,6 +1209,17 @@ class LConstantD: public LTemplateInstruction<1, 0, 1> { |
}; |
+class LConstantE: public LTemplateInstruction<1, 0, 0> { |
+ public: |
+ DECLARE_CONCRETE_INSTRUCTION(ConstantE, "constant-e") |
+ DECLARE_HYDROGEN_ACCESSOR(Constant) |
+ |
+ ExternalReference value() const { |
+ return hydrogen()->ExternalReferenceValue(); |
+ } |
+}; |
+ |
+ |
class LConstantT: public LTemplateInstruction<1, 0, 0> { |
public: |
DECLARE_CONCRETE_INSTRUCTION(ConstantT, "constant-t") |