[llvm-commits] [llvm] r140784 - /llvm/trunk/lib/CodeGen/AsmPrinter/AsmPrinter.cpp

Duncan Sands baldrick at free.fr
Thu Sep 29 09:01:49 PDT 2011


Author: baldrick
Date: Thu Sep 29 11:01:46 2011
New Revision: 140784

URL: http://llvm.org/viewvc/llvm-project?rev=140784&view=rev
Log:
Place this bracket according to the LLVM style.

Modified:
    llvm/trunk/lib/CodeGen/AsmPrinter/AsmPrinter.cpp

Modified: llvm/trunk/lib/CodeGen/AsmPrinter/AsmPrinter.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/AsmPrinter/AsmPrinter.cpp?rev=140784&r1=140783&r2=140784&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/AsmPrinter/AsmPrinter.cpp (original)
+++ llvm/trunk/lib/CodeGen/AsmPrinter/AsmPrinter.cpp Thu Sep 29 11:01:46 2011
@@ -1231,8 +1231,7 @@
 
 typedef std::pair<int, Constant*> Structor;
 
-static bool priority_order(const Structor& lhs, const Structor& rhs)
-{
+static bool priority_order(const Structor& lhs, const Structor& rhs) {
   return lhs.first < rhs.first;
 }
 





More information about the llvm-commits mailing list