summaryrefslogtreecommitdiff
path: root/include/llvm/Support/PatternMatch.h
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/llvm/Support/PatternMatch.h
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/llvm/Support/PatternMatch.h')
-rw-r--r--include/llvm/Support/PatternMatch.h8
1 files changed, 3 insertions, 5 deletions
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
-