aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2005-03-13 19:04:04 +0000
committerChris Lattner <sabre@nondot.org>2005-03-13 19:04:04 +0000
commit977df767228a1754d17c8624c33138325e5dbf1b (patch)
tree6145b25fc1e5c996d92513fd539713306d5058c2
parent84e2dc2d5dab78e1db73b33bf4bc1878b47744fa (diff)
add a helper method
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@20578 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/llvm/Target/TargetData.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/llvm/Target/TargetData.h b/include/llvm/Target/TargetData.h
index 3879b74c7e..eb4baa999c 100644
--- a/include/llvm/Target/TargetData.h
+++ b/include/llvm/Target/TargetData.h
@@ -119,6 +119,11 @@ public:
std::vector<uint64_t> MemberOffsets;
uint64_t StructSize;
unsigned StructAlignment;
+
+ /// getElementContainingOffset - Given a valid offset into the structure,
+ /// return the structure index that contains it.
+ unsigned getElementContainingOffset(uint64_t Offset) const;
+
private:
friend class TargetData; // Only TargetData can create this class
StructLayout(const StructType *ST, const TargetData &TD);