* 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
This commit is contained in:
Misha Brukman 2009-01-02 20:26:30 +00:00
parent ae285bf5a6
commit 630fcb8678
4 changed files with 11 additions and 13 deletions

View File

@ -15,8 +15,8 @@
#define LLVM_LINKER_H
#include "llvm/System/Path.h"
#include <vector>
#include <memory>
#include <vector>
namespace llvm {

View File

@ -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 {

View File

@ -24,11 +24,11 @@
#include "llvm/Support/DataTypes.h"
#include "llvm/Support/Compiler.h"
#include "llvm/ADT/SmallVector.h"
#include <string>
#include <vector>
#include <utility>
#include <cstdarg>
#include <cassert>
#include <cstdarg>
#include <string>
#include <utility>
#include <vector>
namespace llvm {

View 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