From 466b9bd7571dff9ef1584cf74031f07370eea6de Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Tue, 10 Apr 2007 03:18:19 +0000 Subject: [PATCH] unbreak the build :( git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@35857 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/VMCore/Verifier.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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();