| Index: src/ia32/lithium-ia32.h
|
| diff --git a/src/ia32/lithium-ia32.h b/src/ia32/lithium-ia32.h
|
| index 85c04685bad2a90503069ea9ea1747e9f384793a..4c9d65a95540d519221ee9fbb73e09324deb8f3b 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")
|
|
|