|
From: Andreas A. <ar...@so...> - 2020-04-08 17:59:14
|
https://sourceware.org/git/gitweb.cgi?p=valgrind.git;h=1008ab726d43efd7e68225a56cc823a18eca8780 commit 1008ab726d43efd7e68225a56cc823a18eca8780 Author: Andreas Arnez <ar...@li...> Date: Thu Apr 2 16:19:32 2020 +0200 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: --- VEX/priv/host_s390_isel.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 ) { |