diff options
author | Manman Ren <mren@apple.com> | 2013-04-04 21:51:07 +0000 |
---|---|---|
committer | Manman Ren <mren@apple.com> | 2013-04-04 21:51:07 +0000 |
commit | 092d9e8f3bfbd2c8be47ce8651c647e02d63f10f (patch) | |
tree | 80816b6a86687b5fbe6d78ef8ad481a154105274 /clang/lib/CodeGen/CodeGenFunction.h | |
parent | 8ac2f59017b4ba9c9aee935fa50710e2ffb8a0d4 (diff) | |
download | bcm5719-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/CodeGenFunction.h')
-rw-r--r-- | clang/lib/CodeGen/CodeGenFunction.h | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/clang/lib/CodeGen/CodeGenFunction.h b/clang/lib/CodeGen/CodeGenFunction.h index 645d5ff2378..f76022fb97d 100644 --- a/clang/lib/CodeGen/CodeGenFunction.h +++ b/clang/lib/CodeGen/CodeGenFunction.h @@ -2211,9 +2211,7 @@ public: /// the LLVM value representation. llvm::Value *EmitLoadOfScalar(llvm::Value *Addr, bool Volatile, unsigned Alignment, QualType Ty, - llvm::MDNode *TBAAInfo = 0, - QualType TBAABaseTy = QualType(), - uint64_t TBAAOffset = 0); + llvm::MDNode *TBAAInfo = 0); /// EmitLoadOfScalar - Load a scalar value from an address, taking /// care to appropriately convert from the memory representation to @@ -2226,9 +2224,7 @@ public: /// the LLVM value representation. void EmitStoreOfScalar(llvm::Value *Value, llvm::Value *Addr, bool Volatile, unsigned Alignment, QualType Ty, - llvm::MDNode *TBAAInfo = 0, bool isInit = false, - QualType TBAABaseTy = QualType(), - uint64_t TBAAOffset = 0); + llvm::MDNode *TBAAInfo = 0, bool isInit=false); /// EmitStoreOfScalar - Store a scalar value to an address, taking /// care to appropriately convert from the memory representation to |