diff options
author | Eric Christopher <echristo@gmail.com> | 2013-12-04 22:54:45 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gmail.com> | 2013-12-04 22:54:45 +0000 |
commit | 038a5e4630e3484897e8b5be0550ba06427bc048 (patch) | |
tree | 89cbd0888981c7f5fb53f3de6b47ce0c394a94ee | |
parent | feb8ac9bd1c1327074a3c0daa8e796fe21b51afd (diff) | |
download | bcm5719-llvm-038a5e4630e3484897e8b5be0550ba06427bc048.tar.gz bcm5719-llvm-038a5e4630e3484897e8b5be0550ba06427bc048.zip |
const on its own line is confusing.
llvm-svn: 196426
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp b/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp index 8d3258c3726..ac8eb90378d 100644 --- a/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp +++ b/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp @@ -1426,8 +1426,8 @@ void AsmPrinter::EmitLabelDifference(const MCSymbol *Hi, const MCSymbol *Lo, /// where the size in bytes of the directive is specified by Size and Hi/Lo /// specify the labels. This implicitly uses .set if it is available. void AsmPrinter::EmitLabelOffsetDifference(const MCSymbol *Hi, uint64_t Offset, - const MCSymbol *Lo, unsigned Size) - const { + const MCSymbol *Lo, + unsigned Size) const { // Emit Hi+Offset - Lo // Get the Hi+Offset expression. |