diff options
author | Stephen Lin <stephenwlin@gmail.com> | 2013-07-26 18:09:50 +0000 |
---|---|---|
committer | Stephen Lin <stephenwlin@gmail.com> | 2013-07-26 18:09:50 +0000 |
commit | b390abce164eb5ba931ec220be02fc5f35a12b43 (patch) | |
tree | df947654ddcf1220745734330faf26c854198ebd /include | |
parent | 3b6bb79578bcc09b6a588af488da4f6e6d958f01 (diff) | |
download | external_llvm-b390abce164eb5ba931ec220be02fc5f35a12b43.zip external_llvm-b390abce164eb5ba931ec220be02fc5f35a12b43.tar.gz external_llvm-b390abce164eb5ba931ec220be02fc5f35a12b43.tar.bz2 |
Remove trailing whitespace.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@187226 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/Support/PatternMatch.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/Support/PatternMatch.h b/include/llvm/Support/PatternMatch.h index 35a9c07..b1732b2 100644 --- a/include/llvm/Support/PatternMatch.h +++ b/include/llvm/Support/PatternMatch.h @@ -696,14 +696,14 @@ m_ZExt(const OpTy &Op) { /// m_UIToFP template<typename OpTy> inline CastClass_match<OpTy, Instruction::UIToFP> -m_UIToFP(const OpTy &Op) { +m_UIToFP(const OpTy &Op) { return CastClass_match<OpTy, Instruction::UIToFP>(Op); } /// m_SIToFP template<typename OpTy> inline CastClass_match<OpTy, Instruction::SIToFP> -m_SIToFP(const OpTy &Op) { +m_SIToFP(const OpTy &Op) { return CastClass_match<OpTy, Instruction::SIToFP>(Op); } |