forked from OSchip/llvm-project
parent
9c9741e864
commit
0ff60618d5
|
@ -5488,7 +5488,7 @@ yyreduce:
|
|||
|
||||
// Check for call to invalid intrinsic to avoid crashing later.
|
||||
if (Function *theF = dyn_cast<Function>(V)) {
|
||||
if (theF->hasName() && (strlen(theF->getValueName()->getKeyData()) >= 5)&&
|
||||
if (theF->hasName() && (theF->getValueName()->getKeyLength() >= 5) &&
|
||||
(0 == strncmp(theF->getValueName()->getKeyData(), "llvm.", 5)) &&
|
||||
!theF->getIntrinsicID(true))
|
||||
GEN_ERROR("Call to invalid LLVM intrinsic function '" +
|
||||
|
|
|
@ -2823,7 +2823,7 @@ 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() && (strlen(theF->getValueName()->getKeyData()) >= 5)&&
|
||||
if (theF->hasName() && (theF->getValueName()->getKeyLength() >= 5) &&
|
||||
(0 == strncmp(theF->getValueName()->getKeyData(), "llvm.", 5)) &&
|
||||
!theF->getIntrinsicID(true))
|
||||
GEN_ERROR("Call to invalid LLVM intrinsic function '" +
|
||||
|
|
Loading…
Reference in New Issue