mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-13 21:05:16 +00:00
comment cleanups.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@58315 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
1f08cc2d2b
commit
b2ccf8f607
@ -224,21 +224,21 @@ public:
|
||||
return Objects[ObjectIdx+NumFixedObjects].Size;
|
||||
}
|
||||
|
||||
// setObjectSize - Change the size of the specified stack object...
|
||||
/// setObjectSize - Change the size of the specified stack object.
|
||||
void setObjectSize(int ObjectIdx, int64_t Size) {
|
||||
assert(unsigned(ObjectIdx+NumFixedObjects) < Objects.size() &&
|
||||
"Invalid Object Idx!");
|
||||
Objects[ObjectIdx+NumFixedObjects].Size = Size;
|
||||
}
|
||||
|
||||
/// getObjectAlignment - Return the alignment of the specified stack object...
|
||||
/// getObjectAlignment - Return the alignment of the specified stack object.
|
||||
unsigned getObjectAlignment(int ObjectIdx) const {
|
||||
assert(unsigned(ObjectIdx+NumFixedObjects) < Objects.size() &&
|
||||
"Invalid Object Idx!");
|
||||
return Objects[ObjectIdx+NumFixedObjects].Alignment;
|
||||
}
|
||||
|
||||
/// setObjectAlignment - Change the alignment of the specified stack object...
|
||||
/// setObjectAlignment - Change the alignment of the specified stack object.
|
||||
void setObjectAlignment(int ObjectIdx, unsigned Align) {
|
||||
assert(unsigned(ObjectIdx+NumFixedObjects) < Objects.size() &&
|
||||
"Invalid Object Idx!");
|
||||
|
Loading…
Reference in New Issue
Block a user