summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorMisha Brukman <brukman+llvm@gmail.com>2009-01-02 20:26:30 +0000
committerMisha Brukman <brukman+llvm@gmail.com>2009-01-02 20:26:30 +0000
commit630fcb86785f96501126e52009619b475403dc62 (patch)
tree17e4773e0aace5d6a54e11e83e7b8f5976bbb76d /include
parentae285bf5a631e7dd24cce087eca78353ff231a9c (diff)
downloadllvm-630fcb86785f96501126e52009619b475403dc62.tar.gz
llvm-630fcb86785f96501126e52009619b475403dc62.tar.bz2
llvm-630fcb86785f96501126e52009619b475403dc62.tar.xz
* 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
Diffstat (limited to 'include')
-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
-