diff options
author | Geoffrey Mainland <gmainlan@microsoft.com> | 2013-09-15 17:20:09 -0400 |
---|---|---|
committer | Geoffrey Mainland <gmainlan@microsoft.com> | 2013-09-22 22:34:00 -0400 |
commit | 26a960c662cdfdfb24ec8ed3e013c686dfdca4cd (patch) | |
tree | f99cd0e0fddc6d44f18c4d69841b41697e618408 /compiler/codeGen/StgCmmLayout.hs | |
parent | 49f4c12e0ad53f9d10c74c4a04c485f89293c4b6 (diff) | |
download | haskell-26a960c662cdfdfb24ec8ed3e013c686dfdca4cd.tar.gz |
Add support for 512-bit-wide vectors.
Diffstat (limited to 'compiler/codeGen/StgCmmLayout.hs')
-rw-r--r-- | compiler/codeGen/StgCmmLayout.hs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/compiler/codeGen/StgCmmLayout.hs b/compiler/codeGen/StgCmmLayout.hs index 30c2d36ff2..84ff21b3d0 100644 --- a/compiler/codeGen/StgCmmLayout.hs +++ b/compiler/codeGen/StgCmmLayout.hs @@ -386,6 +386,7 @@ stdPattern reps [L] -> Just ARG_L [V16] -> Just ARG_V16 [V32] -> Just ARG_V32 + [V64] -> Just ARG_V64 [N,N] -> Just ARG_NN [N,P] -> Just ARG_NP |