mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-15 04:30:12 +00:00
Check length of string before we walk off the end of it.
Thanks, Chris. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36155 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
0ed8df38c2
commit
43e607303b
@ -2823,9 +2823,9 @@ InstVal : ArithmeticOps Types ValueRef ',' ValueRef {
|
|||||||
|
|
||||||
// Check for call to invalid intrinsic to avoid crashing later.
|
// Check for call to invalid intrinsic to avoid crashing later.
|
||||||
if (Function *theF = dyn_cast<Function>(V)) {
|
if (Function *theF = dyn_cast<Function>(V)) {
|
||||||
if (theF->hasName() &&
|
if (theF->hasName() && (strlen(theF->getValueName()->getKeyData()) >= 5)&&
|
||||||
0 == strncmp(theF->getValueName()->getKeyData(), "llvm.", 5) &&
|
(0 == strncmp(theF->getValueName()->getKeyData(), "llvm.", 5)) &&
|
||||||
!theF->getIntrinsicID(true))
|
!theF->getIntrinsicID(true))
|
||||||
GEN_ERROR("Call to invalid LLVM intrinsic function '" +
|
GEN_ERROR("Call to invalid LLVM intrinsic function '" +
|
||||||
theF->getName() + "'");
|
theF->getName() + "'");
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user