diff options
author | Geoffrey Mainland <mainland@apeiron.net> | 2013-08-02 17:55:55 +0100 |
---|---|---|
committer | Geoffrey Mainland <mainland@apeiron.net> | 2013-08-06 09:00:47 +0100 |
commit | 253a5b753f9592e63344eff6c71298f566928e4d (patch) | |
tree | 8df6907230aac69f08b26bcf890897f4d94da0a6 /utils/deriveConstants | |
parent | 0daee297e3c44c00f54d2be15f13eabdddc6b62f (diff) | |
download | haskell-253a5b753f9592e63344eff6c71298f566928e4d.tar.gz |
Rename SSE -> XMM for consistency.
We were using SSE is some places and XMM in others. Better to keep a consistent
naming scheme.
Diffstat (limited to 'utils/deriveConstants')
-rw-r--r-- | utils/deriveConstants/DeriveConstants.hs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/deriveConstants/DeriveConstants.hs b/utils/deriveConstants/DeriveConstants.hs index 3173c27cec..48990061cc 100644 --- a/utils/deriveConstants/DeriveConstants.hs +++ b/utils/deriveConstants/DeriveConstants.hs @@ -576,11 +576,11 @@ wanteds = concat ,constantWord Haskell "MAX_Float_REG" "MAX_FLOAT_REG" ,constantWord Haskell "MAX_Double_REG" "MAX_DOUBLE_REG" ,constantWord Haskell "MAX_Long_REG" "MAX_LONG_REG" - ,constantWord Haskell "MAX_SSE_REG" "MAX_SSE_REG" + ,constantWord Haskell "MAX_XMM_REG" "MAX_XMM_REG" ,constantWord Haskell "MAX_Real_Vanilla_REG" "MAX_REAL_VANILLA_REG" ,constantWord Haskell "MAX_Real_Float_REG" "MAX_REAL_FLOAT_REG" ,constantWord Haskell "MAX_Real_Double_REG" "MAX_REAL_DOUBLE_REG" - ,constantWord Haskell "MAX_Real_SSE_REG" "MAX_REAL_SSE_REG" + ,constantWord Haskell "MAX_Real_XMM_REG" "MAX_REAL_XMM_REG" ,constantWord Haskell "MAX_Real_Long_REG" "MAX_REAL_LONG_REG" -- This tells the native code generator the size of the spill |