diff options
| author | Momchil Velikov <momchil.velikov@arm.com> | 2017-07-23 22:27:34 +0000 |
|---|---|---|
| committer | Momchil Velikov <momchil.velikov@arm.com> | 2017-07-23 22:27:34 +0000 |
| commit | 4e61a7f833183f952f6be4ac71307c98177d77c2 (patch) | |
| tree | 276c4d20ceb08f57600db70886789c07211633d7 | |
| parent | 57ffb2c9d8ab94c8c075158572a57cd867c958b4 (diff) | |
| download | bcm5719-llvm-4e61a7f833183f952f6be4ac71307c98177d77c2.tar.gz bcm5719-llvm-4e61a7f833183f952f6be4ac71307c98177d77c2.zip | |
Fix typo: GETTER to SETTER (NFC)
Use the CALLSITE_DELEGATE_SETTER macro in CallSiteBase::setCannotDuplicate.
Comitted as obvious.
llvm-svn: 308853
| -rw-r--r-- | llvm/include/llvm/IR/CallSite.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/include/llvm/IR/CallSite.h b/llvm/include/llvm/IR/CallSite.h index 96fbebf42c3..01fee548f0d 100644 --- a/llvm/include/llvm/IR/CallSite.h +++ b/llvm/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. |

