|
From: <sv...@va...> - 2015-04-13 11:33:36
|
Author: sewardj
Date: Mon Apr 13 12:33:29 2015
New Revision: 3128
Log:
Remove unused function "lshift".
Modified:
trunk/priv/guest_tilegx_helpers.c
Modified: trunk/priv/guest_tilegx_helpers.c
==============================================================================
--- trunk/priv/guest_tilegx_helpers.c (original)
+++ trunk/priv/guest_tilegx_helpers.c Mon Apr 13 12:33:29 2015
@@ -46,15 +46,6 @@
{ offsetof(VexGuestTILEGXState, field), \
(sizeof ((VexGuestTILEGXState*)0)->field) }
-/* generalised left-shifter */
-static inline UInt lshift ( UInt x, Int n )
-{
- if (n >= 0)
- return x << n;
- else
- return x >> (-n);
-}
-
IRExpr *guest_tilegx_spechelper ( const HChar * function_name, IRExpr ** args,
IRStmt ** precedingStmts, Int n_precedingStmts)
{
|