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 | 71befdaab8f186eebb48888ce801a05d3c56bb38 (patch) | |
tree | 5978d8e2f667fa485d9162ac4ad0c04b4dcbb1e3 /llvm/include | |
parent | 4ef138722191c16ee7ed4ce52f29bc44c1f7bfc8 (diff) | |
download | bcm5719-llvm-71befdaab8f186eebb48888ce801a05d3c56bb38.tar.gz bcm5719-llvm-71befdaab8f186eebb48888ce801a05d3c56bb38.zip |
Remove trailing whitespace.
llvm-svn: 187226
Diffstat (limited to 'llvm/include')
-rw-r--r-- | llvm/include/llvm/Support/PatternMatch.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/include/llvm/Support/PatternMatch.h b/llvm/include/llvm/Support/PatternMatch.h index 35a9c07b75c..b1732b2550f 100644 --- a/llvm/include/llvm/Support/PatternMatch.h +++ b/llvm/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); } |