summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNAKAMURA Takumi <geek4civic@gmail.com>2015-06-14 00:23:33 +0000
committerNAKAMURA Takumi <geek4civic@gmail.com>2015-06-14 00:23:33 +0000
commitbf6ad02906aab926f82a97c684845d84897267bc (patch)
tree732e9d6ff44e518d3666287d272276cc3a5aa6dc
parentb8575b14bef50de07a56a674dd40cdec7ae34491 (diff)
downloadbcm5719-llvm-bf6ad02906aab926f82a97c684845d84897267bc.tar.gz
bcm5719-llvm-bf6ad02906aab926f82a97c684845d84897267bc.zip
Reformat.
llvm-svn: 239691
-rw-r--r--llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp8
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);
}
OpenPOWER on IntegriCloud