mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-02 10:33:53 +00:00
Regenerate.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36156 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
43e607303b
commit
36fdde18c3
lib/AsmParser
@ -5488,8 +5488,8 @@ yyreduce:
|
||||
|
||||
// Check for call to invalid intrinsic to avoid crashing later.
|
||||
if (Function *theF = dyn_cast<Function>(V)) {
|
||||
if (theF->hasName() &&
|
||||
0 == strncmp(theF->getValueName()->getKeyData(), "llvm.", 5) &&
|
||||
if (theF->hasName() && (strlen(theF->getValueName()->getKeyData()) >= 5)&&
|
||||
(0 == strncmp(theF->getValueName()->getKeyData(), "llvm.", 5)) &&
|
||||
!theF->getIntrinsicID(true))
|
||||
GEN_ERROR("Call to invalid LLVM intrinsic function '" +
|
||||
theF->getName() + "'");
|
||||
|
@ -2823,8 +2823,8 @@ InstVal : ArithmeticOps Types ValueRef ',' ValueRef {
|
||||
|
||||
// Check for call to invalid intrinsic to avoid crashing later.
|
||||
if (Function *theF = dyn_cast<Function>(V)) {
|
||||
if (theF->hasName() &&
|
||||
0 == strncmp(theF->getValueName()->getKeyData(), "llvm.", 5) &&
|
||||
if (theF->hasName() && (strlen(theF->getValueName()->getKeyData()) >= 5)&&
|
||||
(0 == strncmp(theF->getValueName()->getKeyData(), "llvm.", 5)) &&
|
||||
!theF->getIntrinsicID(true))
|
||||
GEN_ERROR("Call to invalid LLVM intrinsic function '" +
|
||||
theF->getName() + "'");
|
||||
|
Loading…
x
Reference in New Issue
Block a user