From 9a7d48ae67d1f151d5339d37ce66c57179de77b4 Mon Sep 17 00:00:00 2001 From: Duncan Sands Date: Thu, 29 Sep 2011 16:01:46 +0000 Subject: [PATCH] Place this bracket according to the LLVM style. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@140784 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/CodeGen/AsmPrinter/AsmPrinter.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/CodeGen/AsmPrinter/AsmPrinter.cpp b/lib/CodeGen/AsmPrinter/AsmPrinter.cpp index ddf5f9ccde6..8ac4fb6361c 100644 --- a/lib/CodeGen/AsmPrinter/AsmPrinter.cpp +++ b/lib/CodeGen/AsmPrinter/AsmPrinter.cpp @@ -1231,8 +1231,7 @@ void AsmPrinter::EmitLLVMUsedList(const Constant *List) { typedef std::pair 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; }