diff options
author | Fariborz Jahanian <fjahanian@apple.com> | 2008-11-19 17:34:06 +0000 |
---|---|---|
committer | Fariborz Jahanian <fjahanian@apple.com> | 2008-11-19 17:34:06 +0000 |
commit | dbd32c20c529430fe1d22d87317f039849b8b0bb (patch) | |
tree | 76e46fccc5ce7ca1a6689de4b49ac4a73b92de11 /lib/CodeGen/CGValue.h | |
parent | 337c6b9f5d502dc1c5acea628bf7bf9e828efc0e (diff) |
Few more changes due to Daniel's feedback.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@59645 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CGValue.h')
-rw-r--r-- | lib/CodeGen/CGValue.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/CodeGen/CGValue.h b/lib/CodeGen/CGValue.h index c328e35931..1c60ebf14e 100644 --- a/lib/CodeGen/CGValue.h +++ b/lib/CodeGen/CGValue.h @@ -159,8 +159,8 @@ public: bool isVolatileQualified() const { return Volatile; } bool isRestrictQualified() const { return Restrict; } - bool ObjcWeak() const { return ObjCType == Weak; } - bool ObjcStrong() const { return ObjCType == Strong; } + bool isObjCWeak() const { return ObjCType == Weak; } + bool isObjCStrong() const { return ObjCType == Strong; } static void SetObjCType(unsigned WeakVal, unsigned StrongVal, LValue& R) { if (WeakVal) |