1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 19:12:56 +02:00

improve comments.

llvm-svn: 80897
This commit is contained in:
Chris Lattner 2009-09-03 06:00:00 +00:00
parent 6fce76a106
commit 52f982c2f9

View File

@ -110,7 +110,7 @@ private:
GlobalValue *GV; // For MO_GlobalAddress.
MDNode *Node; // For MO_Metadata.
} Val;
int64_t Offset; // An offset from the object.
int64_t Offset; // An offset from the object.
} OffsetedInfo;
} Contents;
@ -298,6 +298,8 @@ public:
return Contents.OffsetedInfo.Val.Node;
}
/// getOffset - Return the offset from the symbol in this operand. This always
/// returns 0 for ExternalSymbol operands.
int64_t getOffset() const {
assert((isGlobal() || isSymbol() || isCPI()) &&
"Wrong MachineOperand accessor");