forked from OSchip/llvm-project
Fix typo 'getter' where 'setter' was intended.
llvm-svn: 107635
This commit is contained in:
parent
4c0a919732
commit
19a10a599d
|
@ -204,9 +204,9 @@ public:
|
|||
CALLSITE_DELEGATE_GETTER(isNoInline());
|
||||
}
|
||||
void setIsNoInline(bool Value = true) {
|
||||
CALLSITE_DELEGATE_GETTER(setIsNoInline(Value));
|
||||
CALLSITE_DELEGATE_SETTER(setIsNoInline(Value));
|
||||
}
|
||||
|
||||
|
||||
/// @brief Determine if the call does not access memory.
|
||||
bool doesNotAccessMemory() const {
|
||||
CALLSITE_DELEGATE_GETTER(doesNotAccessMemory());
|
||||
|
|
Loading…
Reference in New Issue