From 630fcb86785f96501126e52009619b475403dc62 Mon Sep 17 00:00:00 2001 From: Misha Brukman Date: Fri, 2 Jan 2009 20:26:30 +0000 Subject: [PATCH] * Alphabetized system headers per the style guide * Minor spacing and comment cleanups git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@61590 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Linker.h | 2 +- include/llvm/Pass.h | 6 +++--- include/llvm/Support/CommandLine.h | 6 +++--- include/llvm/Support/PatternMatch.h | 8 +++----- 4 files changed, 10 insertions(+), 12 deletions(-) diff --git a/include/llvm/Linker.h b/include/llvm/Linker.h index bcba476b34a..884e872602b 100644 --- a/include/llvm/Linker.h +++ b/include/llvm/Linker.h @@ -15,8 +15,8 @@ #define LLVM_LINKER_H #include "llvm/System/Path.h" -#include #include +#include namespace llvm { diff --git a/include/llvm/Pass.h b/include/llvm/Pass.h index 247805f4dbf..66cb189409f 100644 --- a/include/llvm/Pass.h +++ b/include/llvm/Pass.h @@ -31,10 +31,10 @@ #include "llvm/Support/DataTypes.h" #include "llvm/Support/Streams.h" -#include -#include -#include #include +#include +#include +#include namespace llvm { diff --git a/include/llvm/Support/CommandLine.h b/include/llvm/Support/CommandLine.h index 2e1661286c7..b7de038f50b 100644 --- a/include/llvm/Support/CommandLine.h +++ b/include/llvm/Support/CommandLine.h @@ -24,11 +24,11 @@ #include "llvm/Support/DataTypes.h" #include "llvm/Support/Compiler.h" #include "llvm/ADT/SmallVector.h" +#include +#include #include -#include #include -#include -#include +#include namespace llvm { diff --git a/include/llvm/Support/PatternMatch.h b/include/llvm/Support/PatternMatch.h index 24f4fe61374..035dcf513f7 100644 --- a/include/llvm/Support/PatternMatch.h +++ b/include/llvm/Support/PatternMatch.h @@ -513,13 +513,11 @@ struct brc_match { }; template -inline brc_match m_Br(const Cond_t &C, BasicBlock *&T, BasicBlock *&F){ +inline brc_match m_Br(const Cond_t &C, BasicBlock *&T, BasicBlock *&F) { return brc_match(C, T, F); } - -}} // end llvm::match - +} // end namespace PatternMatch +} // end namespace llvm #endif - -- 2.34.1