summaryrefslogtreecommitdiffstats
path: root/clang/lib/CodeGen/CGValue.h
diff options
context:
space:
mode:
authorManman Ren <mren@apple.com>2013-04-04 21:51:07 +0000
committerManman Ren <mren@apple.com>2013-04-04 21:51:07 +0000
commit092d9e8f3bfbd2c8be47ce8651c647e02d63f10f (patch)
tree80816b6a86687b5fbe6d78ef8ad481a154105274 /clang/lib/CodeGen/CGValue.h
parent8ac2f59017b4ba9c9aee935fa50710e2ffb8a0d4 (diff)
downloadbcm5719-llvm-092d9e8f3bfbd2c8be47ce8651c647e02d63f10f.tar.gz
bcm5719-llvm-092d9e8f3bfbd2c8be47ce8651c647e02d63f10f.zip
revert r178784 since it does not have a commit message
llvm-svn: 178796
Diffstat (limited to 'clang/lib/CodeGen/CGValue.h')
-rw-r--r--clang/lib/CodeGen/CGValue.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/clang/lib/CodeGen/CGValue.h b/clang/lib/CodeGen/CGValue.h
index b625b866c07..0657fdca367 100644
--- a/clang/lib/CodeGen/CGValue.h
+++ b/clang/lib/CodeGen/CGValue.h
@@ -157,11 +157,6 @@ class LValue {
Expr *BaseIvarExp;
- /// Used by struct-path-aware TBAA.
- QualType TBAABaseType;
- /// Offset relative to the base type.
- uint64_t TBAAOffset;
-
/// TBAAInfo - TBAA information to attach to dereferences of this LValue.
llvm::MDNode *TBAAInfo;
@@ -180,10 +175,6 @@ private:
this->ImpreciseLifetime = false;
this->ThreadLocalRef = false;
this->BaseIvarExp = 0;
-
- // Initialize fields for TBAA.
- this->TBAABaseType = Type;
- this->TBAAOffset = 0;
this->TBAAInfo = TBAAInfo;
}
@@ -241,12 +232,6 @@ public:
Expr *getBaseIvarExp() const { return BaseIvarExp; }
void setBaseIvarExp(Expr *V) { BaseIvarExp = V; }
- QualType getTBAABaseType() const { return TBAABaseType; }
- void setTBAABaseType(QualType T) { TBAABaseType = T; }
-
- uint64_t getTBAAOffset() const { return TBAAOffset; }
- void setTBAAOffset(uint64_t O) { TBAAOffset = O; }
-
llvm::MDNode *getTBAAInfo() const { return TBAAInfo; }
void setTBAAInfo(llvm::MDNode *N) { TBAAInfo = N; }
OpenPOWER on IntegriCloud