aboutsummaryrefslogtreecommitdiffstats
path: root/lib/CodeGen/ObjectCodeEmitter.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lib/CodeGen/ObjectCodeEmitter.cpp')
-rw-r--r--lib/CodeGen/ObjectCodeEmitter.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/CodeGen/ObjectCodeEmitter.cpp b/lib/CodeGen/ObjectCodeEmitter.cpp
index 1044856..6f76340 100644
--- a/lib/CodeGen/ObjectCodeEmitter.cpp
+++ b/lib/CodeGen/ObjectCodeEmitter.cpp
@@ -55,8 +55,7 @@ void ObjectCodeEmitter::emitDWordBE(uint64_t W) {
BO->emitDWordBE(W);
}
-/// emitAlignment - Move the CurBufferPtr pointer up the the specified
-/// alignment (saturated to BufferEnd of course).
+/// emitAlignment - Align 'BO' to the necessary alignment boundary.
void ObjectCodeEmitter::emitAlignment(unsigned Alignment /* 0 */,
uint8_t fill /* 0 */) {
BO->emitAlignment(Alignment, fill);
@@ -138,5 +137,7 @@ uintptr_t ObjectCodeEmitter::getConstantPoolEntrySection(unsigned Index) const {
return CPSections[Index];
}
+/// getNoopSize - Returns the size of the no operation instruction
+
} // end namespace llvm