summaryrefslogtreecommitdiffstats
path: root/clang/lib/CodeGen/CGValue.h
diff options
context:
space:
mode:
Diffstat (limited to 'clang/lib/CodeGen/CGValue.h')
-rw-r--r--clang/lib/CodeGen/CGValue.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/clang/lib/CodeGen/CGValue.h b/clang/lib/CodeGen/CGValue.h
index 5204c451666..aed9fc156de 100644
--- a/clang/lib/CodeGen/CGValue.h
+++ b/clang/lib/CodeGen/CGValue.h
@@ -161,8 +161,8 @@ private:
static void SetQualifiers(unsigned Qualifiers, LValue& R) {
R.Volatile = (Qualifiers&QualType::Volatile)!=0;
R.Restrict = (Qualifiers&QualType::Restrict)!=0;
- // FIXME: Convenient place to set objc flags to 0. This
- // should really be done in a user-defined constructor instead.
+ // FIXME: Convenient place to set objc flags to 0. This should really be
+ // done in a user-defined constructor instead.
R.ObjCType = None;
R.Ivar = R.NonGC = R.GlobalObjCRef = false;
}
@@ -288,9 +288,9 @@ public:
return R;
}
- // FIXME: It is probably bad that we aren't emitting the target when
- // we build the lvalue. However, this complicates the code a bit,
- // and I haven't figured out how to make it go wrong yet.
+ // FIXME: It is probably bad that we aren't emitting the target when we build
+ // the lvalue. However, this complicates the code a bit, and I haven't figured
+ // out how to make it go wrong yet.
static LValue MakePropertyRef(const ObjCPropertyRefExpr *E,
unsigned Qualifiers) {
LValue R;
OpenPOWER on IntegriCloud