diff options
author | Duncan Sands <baldrick@free.fr> | 2011-09-29 16:01:46 +0000 |
---|---|---|
committer | Duncan Sands <baldrick@free.fr> | 2011-09-29 16:01:46 +0000 |
commit | 9a7d48ae67d1f151d5339d37ce66c57179de77b4 (patch) | |
tree | c7c9f4939ccfe7162246900119e726eb7e339f60 /lib/CodeGen/AsmPrinter | |
parent | 2097d702d47d6ef51b6958f3f7a79e82b3278221 (diff) | |
download | external_llvm-9a7d48ae67d1f151d5339d37ce66c57179de77b4.zip external_llvm-9a7d48ae67d1f151d5339d37ce66c57179de77b4.tar.gz external_llvm-9a7d48ae67d1f151d5339d37ce66c57179de77b4.tar.bz2 |
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
Diffstat (limited to 'lib/CodeGen/AsmPrinter')
-rw-r--r-- | lib/CodeGen/AsmPrinter/AsmPrinter.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/CodeGen/AsmPrinter/AsmPrinter.cpp b/lib/CodeGen/AsmPrinter/AsmPrinter.cpp index ddf5f9c..8ac4fb6 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<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; } |