From ebed46a84af0bbb0de5843548e27a0a966988841 Mon Sep 17 00:00:00 2001 From: Misha Brukman Date: Fri, 2 Jan 2009 20:26:30 +0000 Subject: * 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 --- include/llvm/Support/PatternMatch.h | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'include/llvm/Support/PatternMatch.h') diff --git a/include/llvm/Support/PatternMatch.h b/include/llvm/Support/PatternMatch.h index 24f4fe6..035dcf5 100644 --- a/include/llvm/Support/PatternMatch.h +++ b/include/llvm/Support/PatternMatch.h @@ -513,13 +513,11 @@ struct brc_match { }; template -inline brc_match m_Br(const Cond_t &C, BasicBlock *&T, BasicBlock *&F){ +inline brc_match m_Br(const Cond_t &C, BasicBlock *&T, BasicBlock *&F) { return brc_match(C, T, F); } - -}} // end llvm::match - +} // end namespace PatternMatch +} // end namespace llvm #endif - -- cgit v1.1