From: John Criswell Date: Tue, 9 Sep 2003 16:36:09 +0000 (+0000) Subject: Modified the check for intrinsic functions. All intrinsic functions have to X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=21ca6ee7cdad69168d0470fcaedc6bb494b36776;p=oota-llvm.git Modified the check for intrinsic functions. All intrinsic functions have to be at least 6 characters, since something must follow the "llvm." string in the function name. This seems to fix an assertion failure with the SingleSource tests, too. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8418 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/VMCore/Function.cpp b/lib/VMCore/Function.cpp index 74098ffc45a..5ef4ce47a99 100644 --- a/lib/VMCore/Function.cpp +++ b/lib/VMCore/Function.cpp @@ -159,7 +159,7 @@ void Function::dropAllReferences() { /// llvm/Intrinsics.h. /// unsigned Function::getIntrinsicID() const { - if (getName().size() <= 5 || getName()[4] != '.' || getName()[0] != 'l' || + if (getName().size() <= 6 || getName()[4] != '.' || getName()[0] != 'l' || getName()[1] != 'l' || getName()[2] != 'v' || getName()[3] != 'm') return 0; // All intrinsics start with 'llvm.'