diff options
| author | Chris Lattner <sabre@nondot.org> | 2010-04-28 01:06:02 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2010-04-28 01:06:02 +0000 |
| commit | 755824756ccdc8f7b1c6f85efffdffb526461cc4 (patch) | |
| tree | c5f5926a4e6a289c30ed99b40e33e0d0b7ca8507 /include/llvm/CodeGen | |
| parent | 059ea138a6e4180de0d70390f7147dac66614517 (diff) | |
remove a dead argument to EmitAlignment.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@102483 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen')
| -rw-r--r-- | include/llvm/CodeGen/AsmPrinter.h | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/include/llvm/CodeGen/AsmPrinter.h b/include/llvm/CodeGen/AsmPrinter.h index 17048f68db..43643fc9fe 100644 --- a/include/llvm/CodeGen/AsmPrinter.h +++ b/include/llvm/CodeGen/AsmPrinter.h @@ -206,10 +206,7 @@ namespace llvm { /// an explicit alignment requested, it will unconditionally override the /// alignment request. However, if ForcedAlignBits is specified, this value /// has final say: the ultimate alignment will be the max of ForcedAlignBits - /// and the alignment computed with NumBits and the global. If UseFillExpr - /// is true, it also emits an optional second value FillValue which the - /// assembler uses to fill gaps to match alignment for text sections if the - /// has specified a non-zero fill value. + /// and the alignment computed with NumBits and the global. /// /// The algorithm is: /// Align = NumBits; @@ -217,8 +214,7 @@ namespace llvm { /// Align = std::max(Align, ForcedAlignBits); /// void EmitAlignment(unsigned NumBits, const GlobalValue *GV = 0, - unsigned ForcedAlignBits = 0, - bool UseFillExpr = true) const; + unsigned ForcedAlignBits = 0) const; /// EmitBasicBlockStart - This method prints the label for the specified /// MachineBasicBlock, an alignment (if present) and a comment describing |
