diff options
Diffstat (limited to 'include/llvm/Support')
-rw-r--r-- | include/llvm/Support/CommandLine.h | 6 | ||||
-rw-r--r-- | include/llvm/Support/PatternMatch.h | 8 |
2 files changed, 6 insertions, 8 deletions
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 - |