summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Target
diff options
context:
space:
mode:
authorPete Cooper <peter_cooper@apple.com>2015-05-20 17:16:39 +0000
committerPete Cooper <peter_cooper@apple.com>2015-05-20 17:16:39 +0000
commit9e1d335697bcc5ac02e4c097a03c3478b76f7ec6 (patch)
treef4e965c41d62f7047f8dcfa6d46f22a75796c554 /llvm/lib/Target
parent0ebbe74b73c6b1e9167a7fe89cbccc6522b392e2 (diff)
downloadbcm5719-llvm-9e1d335697bcc5ac02e4c097a03c3478b76f7ec6.tar.gz
bcm5719-llvm-9e1d335697bcc5ac02e4c097a03c3478b76f7ec6.zip
Change Function::getIntrinsicID() to return an Intrinsic::ID. NFC.
Now that Intrinsic::ID is a typed enum, we can forward declare it and so return it from this method. This updates all users which were either using an unsigned to store it, or had a now unnecessary cast. llvm-svn: 237810
Diffstat (limited to 'llvm/lib/Target')
-rw-r--r--llvm/lib/Target/AArch64/AArch64FastISel.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Target/AArch64/AArch64FastISel.cpp b/llvm/lib/Target/AArch64/AArch64FastISel.cpp
index b80e2f88bae..9977e2b84a7 100644
--- a/llvm/lib/Target/AArch64/AArch64FastISel.cpp
+++ b/llvm/lib/Target/AArch64/AArch64FastISel.cpp
@@ -3269,7 +3269,7 @@ bool AArch64FastISel::foldXALUIntrinsic(AArch64CC::CondCode &CC,
std::swap(LHS, RHS);
// Simplify multiplies.
- unsigned IID = II->getIntrinsicID();
+ Intrinsic::ID IID = II->getIntrinsicID();
switch (IID) {
default:
break;
@@ -3537,7 +3537,7 @@ bool AArch64FastISel::fastLowerIntrinsicCall(const IntrinsicInst *II) {
std::swap(LHS, RHS);
// Simplify multiplies.
- unsigned IID = II->getIntrinsicID();
+ Intrinsic::ID IID = II->getIntrinsicID();
switch (IID) {
default:
break;
OpenPOWER on IntegriCloud