* Alphabetized system headers per the style guide
authorMisha Brukman <brukman+llvm@gmail.com>
Fri, 2 Jan 2009 20:26:30 +0000 (20:26 +0000)
committerMisha Brukman <brukman+llvm@gmail.com>
Fri, 2 Jan 2009 20:26:30 +0000 (20:26 +0000)
* 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
include/llvm/Pass.h
include/llvm/Support/CommandLine.h
include/llvm/Support/PatternMatch.h

index bcba476b34ade9dc777ec7f5c67f8328da31b1ba..884e872602bdd8f8aeafa5a0551e50842f4d14c9 100644 (file)
@@ -15,8 +15,8 @@
 #define LLVM_LINKER_H
 
 #include "llvm/System/Path.h"
-#include <vector>
 #include <memory>
+#include <vector>
 
 namespace llvm {
 
index 247805f4dbfa8eafcef1c2716048cde4c9a321d1..66cb189409f1b83cabc38777aec4a5fe9968a5b3 100644 (file)
 
 #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 {
 
index 2e1661286c75aa9fc958bbc059724ce116e39546..b7de038f50befa59d5e1e70a522c264766b83942 100644 (file)
 #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 {
 
index 24f4fe613744405913737b46608425a0a80c00c9..035dcf513f7ce76c1c5988ff1ea19ddc43d93920 100644 (file)
@@ -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
-