| Index: src/IceTargetLoweringX8664Traits.h
|
| diff --git a/src/IceTargetLoweringX8664Traits.h b/src/IceTargetLoweringX8664Traits.h
|
| index cc221715155c4356660d61afb4f595e5671b849a..89fc2032c6d95afd46d69a544a3e2c211ff533d8 100644
|
| --- a/src/IceTargetLoweringX8664Traits.h
|
| +++ b/src/IceTargetLoweringX8664Traits.h
|
| @@ -439,7 +439,9 @@ template <> struct MachineTraits<TargetX8664> {
|
| }
|
|
|
| /// The maximum number of arguments to pass in XMM registers
|
| - static const uint32_t X86_MAX_XMM_ARGS = 4;
|
| + static const uint32_t X86_MAX_XMM_ARGS = 8;
|
| + /// The maximum number of arguments to pass in GPR registers
|
| + static const uint32_t X86_MAX_GPR_ARGS = 6;
|
| /// The number of bits in a byte
|
| static const uint32_t X86_CHAR_BIT = 8;
|
| /// Stack alignment. This is defined in IceTargetLoweringX8664.cpp because it
|
|
|