diff options
author | Misha Brukman <brukman+llvm@gmail.com> | 2005-04-21 20:48:15 +0000 |
---|---|---|
committer | Misha Brukman <brukman+llvm@gmail.com> | 2005-04-21 20:48:15 +0000 |
commit | 63b3afa98460ce38a1c48d3c44ef6edfdaf37b77 (patch) | |
tree | c0f475480b9d884ebcd5fce42a6dac1a4ad1831e /include/llvm/Support/PatternMatch.h | |
parent | 14f342978cbd07436388eb7046bca96ada24cb63 (diff) |
Remove trailing whitespace
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21411 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Support/PatternMatch.h')
-rw-r--r-- | include/llvm/Support/PatternMatch.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/include/llvm/Support/PatternMatch.h b/include/llvm/Support/PatternMatch.h index ae1d30cc08..0be4cd97b5 100644 --- a/include/llvm/Support/PatternMatch.h +++ b/include/llvm/Support/PatternMatch.h @@ -1,10 +1,10 @@ //===-- llvm/Support/PatternMatch.h - Match on the LLVM IR ------*- C++ -*-===// -// +// // The LLVM Compiler Infrastructure // // This file was developed by the LLVM research group and is distributed under // the University of Illinois Open Source License. See LICENSE.TXT for details. -// +// //===----------------------------------------------------------------------===// // // This file provides a simple and efficient mechanism for performing general @@ -33,7 +33,7 @@ #include "llvm/Instructions.h" namespace llvm { -namespace PatternMatch { +namespace PatternMatch { template<typename Val, typename Pattern> bool match(Val *V, const Pattern &P) { @@ -88,7 +88,7 @@ struct BinaryOp_match { R.match(CE->getOperand(1)); return false; } -}; +}; template<typename LHS, typename RHS> inline BinaryOp_match<LHS, RHS, Instruction::Add> m_Add(const LHS &L, @@ -178,7 +178,7 @@ struct BinaryOpClass_match { #endif return false; } -}; +}; template<typename LHS, typename RHS> inline BinaryOpClass_match<LHS, RHS, SetCondInst> @@ -216,7 +216,7 @@ private: else return LHS == ConstantFP::get(LHS->getType(), -0.0) && L.match(RHS); } -}; +}; template<typename LHS> inline neg_match<LHS> m_Neg(const LHS &L) { return L; } |