From: Momchil Velikov Date: Sun, 23 Jul 2017 22:27:34 +0000 (+0000) Subject: Fix typo: GETTER to SETTER (NFC) X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3f41ea02744c7293bc9afe65923d8da8803deec8;p=llvm Fix typo: GETTER to SETTER (NFC) Use the CALLSITE_DELEGATE_SETTER macro in CallSiteBase::setCannotDuplicate. Comitted as obvious. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@308853 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/IR/CallSite.h b/include/llvm/IR/CallSite.h index 96fbebf42c3..01fee548f0d 100644 --- a/include/llvm/IR/CallSite.h +++ b/include/llvm/IR/CallSite.h @@ -488,7 +488,7 @@ public: CALLSITE_DELEGATE_GETTER(cannotDuplicate()); } void setCannotDuplicate() { - CALLSITE_DELEGATE_GETTER(setCannotDuplicate()); + CALLSITE_DELEGATE_SETTER(setCannotDuplicate()); } /// Determine if the call is convergent.