]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
s390 front end: remove unused function 'put_gpr_int'. n-i-bz.
authorJulian Seward <jseward@acm.org>
Sat, 26 Jan 2019 17:18:28 +0000 (18:18 +0100)
committerJulian Seward <jseward@acm.org>
Sat, 26 Jan 2019 17:18:28 +0000 (18:18 +0100)
VEX/priv/guest_s390_toIR.c

index 1c4ac390aa168e68f8e5b4c9bf254efc27d02ec5..d657238869a555f754056e9ccbf6479468ba5786 100644 (file)
@@ -1095,16 +1095,6 @@ gpr_w0_offset(UInt archreg)
    return gpr_offset(archreg) + 0;
 }
 
-/* Write an integer right-aligned into a gpr. */
-static __inline__ void
-put_gpr_int(UInt archreg, IRExpr *expr)
-{
-   UInt siz = sizeofIRType(typeOfIRExpr(irsb->tyenv, expr));
-
-   vassert(siz <= 8);
-   stmt(IRStmt_Put(gpr_offset(archreg) + 8 - siz, expr));
-}
-
 /* Read an integer of given type from a gpr. */
 static __inline__ IRExpr *
 get_gpr_int(UInt archreg, IRType ty)