Chromium Code Reviews| Index: src/ia32/lithium-ia32.h |
| diff --git a/src/ia32/lithium-ia32.h b/src/ia32/lithium-ia32.h |
| index 85c04685bad2a90503069ea9ea1747e9f384793a..358e25421941e35b3f2112dd09b50df535a39628 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) \ |
| @@ -1207,6 +1208,14 @@ class LConstantD: public LTemplateInstruction<1, 0, 1> { |
| double value() const { return hydrogen()->DoubleValue(); } |
| }; |
|
danno
2013/07/25 18:35:57
nit: two carriage returns between the classes
Benedikt Meurer
2013/07/25 21:09:11
Done.
|
| +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: |