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 | cac86805bfe26c2d87e10242e3b4889e2faaba83 (patch) | |
tree | 0578aeb06d2a78a99f9e6a497854f58c917a5d55 /llvm/lib/CodeGen | |
parent | abcc57669d6642ac8e7d14b9e33558d82c59976c (diff) | |
download | bcm5719-llvm-cac86805bfe26c2d87e10242e3b4889e2faaba83.tar.gz bcm5719-llvm-cac86805bfe26c2d87e10242e3b4889e2faaba83.zip |
Place this bracket according to the LLVM style.
llvm-svn: 140784
Diffstat (limited to 'llvm/lib/CodeGen')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp b/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp index ddf5f9ccde6..8ac4fb6361c 100644 --- a/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp +++ b/llvm/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; } |