Reformat.
authorNAKAMURA Takumi <geek4civic@gmail.com>
Sun, 14 Jun 2015 00:23:33 +0000 (00:23 +0000)
committerNAKAMURA Takumi <geek4civic@gmail.com>
Sun, 14 Jun 2015 00:23:33 +0000 (00:23 +0000)
llvm-svn: 239691

llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp

index dd1d9a9..cb8aa72 100644 (file)
@@ -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);
   }