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 | a21d3daadca6871266d39e733118d0c5f26390c1 (patch) | |
tree | 7f6f527fe8d73f9d1200d540fa840e3840612748 /llvm/include/llvm/Support/ConstantFolder.h | |
parent | d8ffadcd8220e003ef562a8673513a98fae80081 (diff) | |
download | bcm5719-llvm-a21d3daadca6871266d39e733118d0c5f26390c1.tar.gz bcm5719-llvm-a21d3daadca6871266d39e733118d0c5f26390c1.zip |
Remove the vicmp and vfcmp instructions. Because we never had a release with
these instructions, no autoupgrade or backwards compatibility support is
provided.
llvm-svn: 74991
Diffstat (limited to 'llvm/include/llvm/Support/ConstantFolder.h')
-rw-r--r-- | llvm/include/llvm/Support/ConstantFolder.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/llvm/include/llvm/Support/ConstantFolder.h b/llvm/include/llvm/Support/ConstantFolder.h index 35065a06086..71368f145b4 100644 --- a/llvm/include/llvm/Support/ConstantFolder.h +++ b/llvm/include/llvm/Support/ConstantFolder.h @@ -154,14 +154,6 @@ public: Constant *RHS) const { return ConstantExpr::getCompare(P, LHS, RHS); } - Constant *CreateVICmp(CmpInst::Predicate P, Constant *LHS, - Constant *RHS) const { - return ConstantExpr::getCompare(P, LHS, RHS); - } - Constant *CreateVFCmp(CmpInst::Predicate P, Constant *LHS, - Constant *RHS) const { - return ConstantExpr::getCompare(P, LHS, RHS); - } //===--------------------------------------------------------------------===// // Other Instructions |