summaryrefslogtreecommitdiff
path: root/lib/Transforms/InstCombine/InstCombineSimplifyDemanded.cpp
diff options
context:
space:
mode:
authorChad Rosier <mcrosier@apple.com>2011-05-26 23:13:19 +0000
committerChad Rosier <mcrosier@apple.com>2011-05-26 23:13:19 +0000
commit62660310d9e5f9ecf329fd3cacb67c344a12ddbc (patch)
treef855da88d8e7d023205268a089306dafde169b50 /lib/Transforms/InstCombine/InstCombineSimplifyDemanded.cpp
parent0958870a085e74c3216186700ca24f3272340ad2 (diff)
downloadllvm-62660310d9e5f9ecf329fd3cacb67c344a12ddbc.tar.gz
llvm-62660310d9e5f9ecf329fd3cacb67c344a12ddbc.tar.bz2
llvm-62660310d9e5f9ecf329fd3cacb67c344a12ddbc.tar.xz
Renamed llvm.x86.sse42.crc32 intrinsics; crc64 doesn't exist.
crc32.[8|16|32] have been renamed to .crc32.32.[8|16|32] and crc64.[8|16|32] have been renamed to .crc32.64.[8|64]. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@132163 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/InstCombine/InstCombineSimplifyDemanded.cpp')
-rw-r--r--lib/Transforms/InstCombine/InstCombineSimplifyDemanded.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Transforms/InstCombine/InstCombineSimplifyDemanded.cpp b/lib/Transforms/InstCombine/InstCombineSimplifyDemanded.cpp
index e3a117fa4a..8fea8eb7ef 100644
--- a/lib/Transforms/InstCombine/InstCombineSimplifyDemanded.cpp
+++ b/lib/Transforms/InstCombine/InstCombineSimplifyDemanded.cpp
@@ -780,8 +780,8 @@ Value *InstCombiner::SimplifyDemandedUseBits(Value *V, APInt DemandedMask,
// TODO: Could compute known zero/one bits based on the input.
break;
}
- case Intrinsic::x86_sse42_crc64_8:
- case Intrinsic::x86_sse42_crc64_64:
+ case Intrinsic::x86_sse42_crc32_64_8:
+ case Intrinsic::x86_sse42_crc32_64_64:
KnownZero = APInt::getHighBitsSet(64, 32);
return 0;
}