1
0
mirror of https://github.com/c64scene-ar/llvm-6502.git synced 2025-02-16 16:31:04 +00:00

Fix typo 'getter' where 'setter' was intended.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@107635 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Nick Lewycky 2010-07-06 03:52:37 +00:00
parent 62f35a2c13
commit b3344f87ac

@ -204,7 +204,7 @@ 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.