Fix typo 'getter' where 'setter' was intended.
authorNick Lewycky <nicholas@mxc.ca>
Tue, 6 Jul 2010 03:52:37 +0000 (03:52 +0000)
committerNick Lewycky <nicholas@mxc.ca>
Tue, 6 Jul 2010 03:52:37 +0000 (03:52 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@107635 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Support/CallSite.h

index c4d442a5f9cf63bdc1cf17ad0ad02db15507f413..6333a782e0dbce55257fbc69067c55bc9c07289f 100644 (file)
@@ -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());