From: Andreas Arnez Date: Thu, 2 Apr 2020 14:19:32 +0000 (+0200) Subject: s390x: Fix typos in comments for sub_from_SP and add_to_SP in isel X-Git-Tag: VALGRIND_3_16_0~64 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=1008ab726d43efd7e68225a56cc823a18eca8780;p=thirdparty%2Fvalgrind.git s390x: Fix typos in comments for sub_from_SP and add_to_SP in isel The comments for sub_from_SP() and add_to_SP() in host_s390_isel.c have typos. Fix them. --- diff --git a/VEX/priv/host_s390_isel.c b/VEX/priv/host_s390_isel.c index ce68b35c7f..6d34ca5d63 100644 --- a/VEX/priv/host_s390_isel.c +++ b/VEX/priv/host_s390_isel.c @@ -514,7 +514,7 @@ get_const_value_as_ulong(const IRConst *con) } -/* Substract n from stack pointer. Assumes 0 <= n <= 256 && n % 8 == 0. */ +/* Subtract n from stack pointer. Assumes 0 <= n <= 256 && n % 8 == 0. */ static void sub_from_SP ( ISelEnv* env, UInt n ) { @@ -525,7 +525,7 @@ sub_from_SP ( ISelEnv* env, UInt n ) } -/* Substract n from stack pointer. Assumes 0 <= n <= 256 && n % 8 == 0. */ +/* Add n to stack pointer. Assumes 0 <= n <= 256 && n % 8 == 0. */ static void add_to_SP ( ISelEnv* env, UInt n ) {