From 9e1830b978fa28ef4f83f54a1e329be44db880a5 Mon Sep 17 00:00:00 2001 From: Serguei Makarov Date: Thu, 14 Jun 2012 10:27:04 -0400 Subject: [PATCH] PR10299: minor style tweak to existing code. --- translate.cxx | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/translate.cxx b/translate.cxx index f0685546b..3b00806d9 100644 --- a/translate.cxx +++ b/translate.cxx @@ -2456,10 +2456,7 @@ c_unparser::c_funcname (const string& e) string c_unparser::c_arg_define (const string& e) { - if (strverscmp(session->compatible.c_str(), "1.8") < 0) - return "#define STAP_ARG_" + e + " THIS->" + e; // old mangling behaviour - else - return "#define STAP_ARG_" + e + " THIS->l_" + e; + return "#define STAP_ARG_" + e + " THIS->" + c_localname(e); } -- 2.43.5