From: Nick Lewycky Date: Tue, 6 Jul 2010 03:52:37 +0000 (+0000) Subject: Fix typo 'getter' where 'setter' was intended. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=b3344f87ac7833240a40d87d29115bed5f6b2396;p=oota-llvm.git Fix typo 'getter' where 'setter' was intended. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@107635 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Support/CallSite.h b/include/llvm/Support/CallSite.h index c4d442a5f9c..6333a782e0d 100644 --- a/include/llvm/Support/CallSite.h +++ b/include/llvm/Support/CallSite.h @@ -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());