mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-24 22:24:54 +00:00
Fix typo 'getter' where 'setter' was intended.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@107635 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -204,9 +204,9 @@ public:
|
|||||||
CALLSITE_DELEGATE_GETTER(isNoInline());
|
CALLSITE_DELEGATE_GETTER(isNoInline());
|
||||||
}
|
}
|
||||||
void setIsNoInline(bool Value = true) {
|
void setIsNoInline(bool Value = true) {
|
||||||
CALLSITE_DELEGATE_GETTER(setIsNoInline(Value));
|
CALLSITE_DELEGATE_SETTER(setIsNoInline(Value));
|
||||||
}
|
}
|
||||||
|
|
||||||
/// @brief Determine if the call does not access memory.
|
/// @brief Determine if the call does not access memory.
|
||||||
bool doesNotAccessMemory() const {
|
bool doesNotAccessMemory() const {
|
||||||
CALLSITE_DELEGATE_GETTER(doesNotAccessMemory());
|
CALLSITE_DELEGATE_GETTER(doesNotAccessMemory());
|
||||||
|
Reference in New Issue
Block a user