From: Chris Lattner Date: Tue, 10 Apr 2007 03:18:19 +0000 (+0000) Subject: unbreak the build :( X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=466b9bd7571dff9ef1584cf74031f07370eea6de;p=oota-llvm.git unbreak the build :( git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@35857 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/VMCore/Verifier.cpp b/lib/VMCore/Verifier.cpp index 6b17598df89..89a08b0770d 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::int_part_select: + case Intrinsic::part_select: if (ArgNo == 1) { unsigned ResultBits = cast(FTy->getReturnType())->getBitWidth();