diff options
author | Nick Lewycky <nicholas@mxc.ca> | 2009-07-08 03:04:38 +0000 |
---|---|---|
committer | Nick Lewycky <nicholas@mxc.ca> | 2009-07-08 03:04:38 +0000 |
commit | 8f5253baafe027bb8939498d9eb1083febc7339a (patch) | |
tree | 7f1696da48ecf7a060d0c9322198de79ae1cfedb /include/llvm/Support/TargetFolder.h | |
parent | 9aa4cd32ed7925de9df616a8ea7de4ff77fa5b00 (diff) | |
download | external_llvm-8f5253baafe027bb8939498d9eb1083febc7339a.zip external_llvm-8f5253baafe027bb8939498d9eb1083febc7339a.tar.gz external_llvm-8f5253baafe027bb8939498d9eb1083febc7339a.tar.bz2 |
Remove the vicmp and vfcmp instructions. Because we never had a release with
these instructions, no autoupgrade or backwards compatibility support is
provided.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@74991 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Support/TargetFolder.h')
-rw-r--r-- | include/llvm/Support/TargetFolder.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/include/llvm/Support/TargetFolder.h b/include/llvm/Support/TargetFolder.h index a1b63aa..db2a31a 100644 --- a/include/llvm/Support/TargetFolder.h +++ b/include/llvm/Support/TargetFolder.h @@ -179,14 +179,6 @@ public: Constant *RHS) const { return Fold(ConstantExpr::getCompare(P, LHS, RHS)); } - Constant *CreateVICmp(CmpInst::Predicate P, Constant *LHS, - Constant *RHS) const { - return Fold(ConstantExpr::getCompare(P, LHS, RHS)); - } - Constant *CreateVFCmp(CmpInst::Predicate P, Constant *LHS, - Constant *RHS) const { - return Fold(ConstantExpr::getCompare(P, LHS, RHS)); - } //===--------------------------------------------------------------------===// // Other Instructions |