|
From: <sv...@va...> - 2005-05-12 17:57:17
|
Author: sewardj
Date: 2005-05-12 18:57:14 +0100 (Thu, 12 May 2005)
New Revision: 3679
Modified:
trunk/cachegrind/cg_main.c
Log:
Handle (ignore) IRStmt_AbiHint.
Modified: trunk/cachegrind/cg_main.c
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- trunk/cachegrind/cg_main.c 2005-05-12 13:45:56 UTC (rev 3678)
+++ trunk/cachegrind/cg_main.c 2005-05-12 17:57:14 UTC (rev 3679)
@@ -397,6 +397,10 @@
case Ist_NoOp:
break;
=20
+ case Ist_AbiHint:
+ /* ABI hints aren't interesting to cachegrind. Ignore. */
+ break;
+
case Ist_IMark:
/* st->Ist.IMark.addr is a 64-bit int. ULong_to_Ptr casts this
to the host's native pointer type; if that is 32 bits then it
|