diff options
author | Jeff Cohen <jeffc@jolt-lang.org> | 2007-04-10 03:10:46 +0000 |
---|---|---|
committer | Jeff Cohen <jeffc@jolt-lang.org> | 2007-04-10 03:10:46 +0000 |
commit | a838321648a96c38282641fe2de333e539a13da1 (patch) | |
tree | e29767bdcc9034ab49c9f25009666b19b12fc31f | |
parent | 461b258cf80f881d26947d711e3cea1cc17c9821 (diff) |
Fix build problem.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@35856 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/VMCore/Verifier.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/VMCore/Verifier.cpp b/lib/VMCore/Verifier.cpp index c2fba29052..6b17598df8 100644 --- a/lib/VMCore/Verifier.cpp +++ b/lib/VMCore/Verifier.cpp @@ -1028,7 +1028,7 @@ void Verifier::VerifyIntrinsicPrototype(Intrinsic::ID ID, Function *F, ...) { if (GotBits < 16 || GotBits % 16 != 0) CheckFailed("Intrinsic requires even byte width argument", F); /* FALL THROUGH */ - case Intrinsic::bit_part_select: + case Intrinsic::int_part_select: if (ArgNo == 1) { unsigned ResultBits = cast<IntegerType>(FTy->getReturnType())->getBitWidth(); |