summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/llvm/Linker.h2
-rw-r--r--include/llvm/Pass.h6
-rw-r--r--include/llvm/Support/CommandLine.h6
-rw-r--r--include/llvm/Support/PatternMatch.h8
4 files changed, 10 insertions, 12 deletions
diff --git a/include/llvm/Linker.h b/include/llvm/Linker.h
index bcba476b34..884e872602 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 <vector>
#include <memory>
+#include <vector>
namespace llvm {
diff --git a/include/llvm/Pass.h b/include/llvm/Pass.h
index 247805f4db..66cb189409 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 <vector>
-#include <utility>
-#include <iosfwd>
#include <cassert>
+#include <iosfwd>
+#include <utility>
+#include <vector>
namespace llvm {
diff --git a/include/llvm/Support/CommandLine.h b/include/llvm/Support/CommandLine.h
index 2e1661286c..b7de038f50 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 <cassert>
+#include <cstdarg>
#include <string>
-#include <vector>
#include <utility>
-#include <cstdarg>
-#include <cassert>
+#include <vector>
namespace llvm {
diff --git a/include/llvm/Support/PatternMatch.h b/include/llvm/Support/PatternMatch.h
index 24f4fe6137..035dcf513f 100644
--- a/include/llvm/Support/PatternMatch.h
+++ b/include/llvm/Support/PatternMatch.h
@@ -513,13 +513,11 @@ struct brc_match {
};
template<typename Cond_t>
-inline brc_match<Cond_t> m_Br(const Cond_t &C, BasicBlock *&T, BasicBlock *&F){
+inline brc_match<Cond_t> m_Br(const Cond_t &C, BasicBlock *&T, BasicBlock *&F) {
return brc_match<Cond_t>(C, T, F);
}
-
-}} // end llvm::match
-
+} // end namespace PatternMatch
+} // end namespace llvm
#endif
-