| Index: src/x64/assembler-x64.h
|
| diff --git a/src/x64/assembler-x64.h b/src/x64/assembler-x64.h
|
| index 9c52b772686316c20e132cf5eede5057d4061bc8..87ec1eb6b6b1529361f2e6680a849bc4d3be4399 100644
|
| --- a/src/x64/assembler-x64.h
|
| +++ b/src/x64/assembler-x64.h
|
| @@ -360,6 +360,14 @@ inline Condition CommuteCondition(Condition cc) {
|
| }
|
|
|
|
|
| +enum RoundingMode {
|
| + kRoundToNearest = 0x0,
|
| + kRoundDown = 0x1,
|
| + kRoundUp = 0x2,
|
| + kRoundToZero = 0x3
|
| +};
|
| +
|
| +
|
| // -----------------------------------------------------------------------------
|
| // Machine instruction Immediates
|
|
|
| @@ -1144,13 +1152,6 @@ class Assembler : public AssemblerBase {
|
| void pinsrd(XMMRegister dst, Register src, int8_t imm8);
|
| void pinsrd(XMMRegister dst, const Operand& src, int8_t imm8);
|
|
|
| - enum RoundingMode {
|
| - kRoundToNearest = 0x0,
|
| - kRoundDown = 0x1,
|
| - kRoundUp = 0x2,
|
| - kRoundToZero = 0x3
|
| - };
|
| -
|
| void roundsd(XMMRegister dst, XMMRegister src, RoundingMode mode);
|
|
|
| // AVX instruction
|
|
|