diff options
author | Nick Lewycky <nicholas@mxc.ca> | 2010-07-06 03:52:37 +0000 |
---|---|---|
committer | Nick Lewycky <nicholas@mxc.ca> | 2010-07-06 03:52:37 +0000 |
commit | 19a10a599d19a3adf1ff90b2394bd6bf90fb39d4 (patch) | |
tree | 011ae27eb4a9f80a6d39c778c3a998730476c076 | |
parent | 4c0a9197322496012b3eb8810907e9fc138ab88d (diff) | |
download | bcm5719-llvm-19a10a599d19a3adf1ff90b2394bd6bf90fb39d4.tar.gz bcm5719-llvm-19a10a599d19a3adf1ff90b2394bd6bf90fb39d4.zip |
Fix typo 'getter' where 'setter' was intended.
llvm-svn: 107635
-rw-r--r-- | llvm/include/llvm/Support/CallSite.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/include/llvm/Support/CallSite.h b/llvm/include/llvm/Support/CallSite.h index c4d442a5f9c..6333a782e0d 100644 --- a/llvm/include/llvm/Support/CallSite.h +++ b/llvm/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()); |