From: Julian Seward Date: Mon, 20 Dec 2004 05:45:39 +0000 (+0000) Subject: Duh. Un-break specialisation of x86 guest helper functions. Duh. X-Git-Tag: svn/VALGRIND_3_0_1^2~657 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=60f5eced31891467f9dbf29f0b8c2243c91a3fc4;p=thirdparty%2Fvalgrind.git Duh. Un-break specialisation of x86 guest helper functions. Duh. git-svn-id: svn://svn.valgrind.org/vex/trunk@677 --- diff --git a/VEX/priv/guest-x86/ghelpers.c b/VEX/priv/guest-x86/ghelpers.c index 6bbc8e7cb9..a04d0d985e 100644 --- a/VEX/priv/guest-x86/ghelpers.c +++ b/VEX/priv/guest-x86/ghelpers.c @@ -686,9 +686,9 @@ IRExpr* guest_x86_spechelper ( Char* function_name, vex_printf("\n"); # endif - /* --------- specialising "calculate_eflags_c" --------- */ + /* --------- specialising "x86g_calculate_eflags_c" --------- */ - if (vex_streq(function_name, "calculate_eflags_c")) { + if (vex_streq(function_name, "x86g_calculate_eflags_c")) { /* specialise calls to above "calculate_eflags_c" function */ IRExpr *cc_op, *cc_dep1, *cc_dep2, *cc_ndep; vassert(arity == 4); @@ -719,9 +719,9 @@ IRExpr* guest_x86_spechelper ( Char* function_name, return NULL; } - /* --------- specialising "calculate_condition" --------- */ + /* --------- specialising "x86g_calculate_condition" --------- */ - if (vex_streq(function_name, "calculate_condition")) { + if (vex_streq(function_name, "x86g_calculate_condition")) { /* specialise calls to above "calculate condition" function */ IRExpr *cond, *cc_op, *cc_dep1, *cc_dep2, *cc_ndep; vassert(arity == 5);