[llvm-commits] [llvm] r61590 - in /llvm/trunk/include/llvm: Linker.h Pass.h Support/CommandLine.h Support/PatternMatch.h
Misha Brukman
brukman+llvm at gmail.com
Fri Jan 2 12:26:31 PST 2009
Author: brukman
Date: Fri Jan 2 14:26:30 2009
New Revision: 61590
URL: http://llvm.org/viewvc/llvm-project?rev=61590&view=rev
Log:
* Alphabetized system headers per the style guide
* Minor spacing and comment cleanups
Modified:
llvm/trunk/include/llvm/Linker.h
llvm/trunk/include/llvm/Pass.h
llvm/trunk/include/llvm/Support/CommandLine.h
llvm/trunk/include/llvm/Support/PatternMatch.h
Modified: llvm/trunk/include/llvm/Linker.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Linker.h?rev=61590&r1=61589&r2=61590&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Linker.h (original)
+++ llvm/trunk/include/llvm/Linker.h Fri Jan 2 14:26:30 2009
@@ -15,8 +15,8 @@
#define LLVM_LINKER_H
#include "llvm/System/Path.h"
-#include <vector>
#include <memory>
+#include <vector>
namespace llvm {
Modified: llvm/trunk/include/llvm/Pass.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Pass.h?rev=61590&r1=61589&r2=61590&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Pass.h (original)
+++ llvm/trunk/include/llvm/Pass.h Fri Jan 2 14:26:30 2009
@@ -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 {
Modified: llvm/trunk/include/llvm/Support/CommandLine.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Support/CommandLine.h?rev=61590&r1=61589&r2=61590&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Support/CommandLine.h (original)
+++ llvm/trunk/include/llvm/Support/CommandLine.h Fri Jan 2 14:26:30 2009
@@ -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 {
Modified: llvm/trunk/include/llvm/Support/PatternMatch.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Support/PatternMatch.h?rev=61590&r1=61589&r2=61590&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Support/PatternMatch.h (original)
+++ llvm/trunk/include/llvm/Support/PatternMatch.h Fri Jan 2 14:26:30 2009
@@ -513,13 +513,11 @@
};
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
-
More information about the llvm-commits
mailing list