| 70 | void Function::setIsUserDefined() { _linkType = USER_DEFINED; } |
| 71 | void Function::setIsStaticallyLinked() const { _linkType = STATICALLY_LINKED; } |
| 72 | void Function::setIsDynamicallyLinked() const { _linkType = DYNAMICALLY_LINKED; } |
| 73 | void Function::setIsSyscall() { _linkType = SYSCALL; } |
| 74 | void Function::setIsIdiom() { _linkType = IDIOM; } |
| 75 | void Function::setIsFromDebug(bool d) { _fromDebug = d; } |