From 9f10a685a656a01ca063c7dfcee64e7d0e47d02e Mon Sep 17 00:00:00 2001 From: Julian Seward Date: Mon, 2 May 2005 10:47:22 +0000 Subject: [PATCH] Don't complain endlessly about missing folding rule for Iop_64HLto128. git-svn-id: svn://svn.valgrind.org/vex/trunk@1152 --- VEX/priv/ir/iropt.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/VEX/priv/ir/iropt.c b/VEX/priv/ir/iropt.c index b78b8f6c49..0832bc1904 100644 --- a/VEX/priv/ir/iropt.c +++ b/VEX/priv/ir/iropt.c @@ -1283,6 +1283,12 @@ static IRExpr* fold_Expr ( IRExpr* e ) | ((ULong)(e->Iex.Binop.arg2->Iex.Const.con->Ico.U32)) )); break; + case Iop_64HLto128: + /* We can't fold this, because there is no way to + express he result in IR, but at least pretend to + handle it, so as to stop getting blasted with + no-rule-for-this-primop messages. */ + break; default: goto unhandled; -- 2.47.3