diff options
author | alexbiehl <alex.biehl@gmail.com> | 2017-10-29 20:47:26 -0400 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2017-10-29 21:51:00 -0400 |
commit | 7673561555ae354fd9eed8de1e57c681906e2d49 (patch) | |
tree | 783602c83122f0567c935d9e6f3c85d0b18649ee /compiler/nativeGen/X86/CodeGen.hs | |
parent | cecd2f2d708d419878205ddd8b87bba18e6483d9 (diff) | |
download | haskell-7673561555ae354fd9eed8de1e57c681906e2d49.tar.gz |
Turn `compareByteArrays#` out-of-line primop into inline primop
Depends on D4090
Reviewers: austin, bgamari, erikd, simonmar, alexbiehl
Reviewed By: bgamari
Subscribers: rwbarton, thomie
Differential Revision: https://phabricator.haskell.org/D4091
Diffstat (limited to 'compiler/nativeGen/X86/CodeGen.hs')
-rw-r--r-- | compiler/nativeGen/X86/CodeGen.hs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/compiler/nativeGen/X86/CodeGen.hs b/compiler/nativeGen/X86/CodeGen.hs index d6ef6d3b65..6c0e0ac783 100644 --- a/compiler/nativeGen/X86/CodeGen.hs +++ b/compiler/nativeGen/X86/CodeGen.hs @@ -2682,6 +2682,7 @@ outOfLineCmmOp mop res args MO_Memcpy _ -> fsLit "memcpy" MO_Memset _ -> fsLit "memset" MO_Memmove _ -> fsLit "memmove" + MO_Memcmp _ -> fsLit "memcmp" MO_PopCnt _ -> fsLit "popcnt" MO_BSwap _ -> fsLit "bswap" |