diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/CodeGen/CGValue.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/CodeGen/CGValue.h b/lib/CodeGen/CGValue.h index b190cc8cc0..00867c5276 100644 --- a/lib/CodeGen/CGValue.h +++ b/lib/CodeGen/CGValue.h @@ -197,6 +197,9 @@ public: Expr *getBaseIvarExp() const { return BaseIvarExp; } void setBaseIvarExp(Expr *V) { BaseIvarExp = V; } + const Qualifiers &getQuals() const { return Quals; } + Qualifiers &getQuals() { return Quals; } + unsigned getAddressSpace() const { return Quals.getAddressSpace(); } unsigned getAlignment() const { return Alignment; } |