diff options
author | NAKAMURA Takumi <geek4civic@gmail.com> | 2015-06-14 00:23:33 +0000 |
---|---|---|
committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2015-06-14 00:23:33 +0000 |
commit | bf6ad02906aab926f82a97c684845d84897267bc (patch) | |
tree | 732e9d6ff44e518d3666287d272276cc3a5aa6dc | |
parent | b8575b14bef50de07a56a674dd40cdec7ae34491 (diff) | |
download | bcm5719-llvm-bf6ad02906aab926f82a97c684845d84897267bc.tar.gz bcm5719-llvm-bf6ad02906aab926f82a97c684845d84897267bc.zip |
Reformat.
llvm-svn: 239691
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp b/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp index dd1d9a980d8..cb8aa72e246 100644 --- a/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp +++ b/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp @@ -899,11 +899,9 @@ void AsmPrinter::EmitFunctionBody() { if (MAI->hasDotTypeDotSizeDirective()) { // We can get the size as difference between the function label and the // temp label. - const MCExpr *SizeExp = - MCBinaryExpr::createSub(MCSymbolRefExpr::create(CurrentFnEnd, OutContext), - MCSymbolRefExpr::create(CurrentFnSymForSize, - OutContext), - OutContext); + const MCExpr *SizeExp = MCBinaryExpr::createSub( + MCSymbolRefExpr::create(CurrentFnEnd, OutContext), + MCSymbolRefExpr::create(CurrentFnSymForSize, OutContext), OutContext); OutStreamer->emitELFSize(cast<MCSymbolELF>(CurrentFnSym), SizeExp); } |