Fix typo 'getter' where 'setter' was intended.

llvm-svn: 107635
This commit is contained in:
Nick Lewycky 2010-07-06 03:52:37 +00:00
parent 4c0a919732
commit 19a10a599d
1 changed files with 2 additions and 2 deletions

View File

@ -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());