aboutsummaryrefslogtreecommitdiff
path: root/risugen
diff options
context:
space:
mode:
authorClaudio Fontana <claudio.fontana@huawei.com>2013-09-25 16:08:22 +0200
committerPeter Maydell <peter.maydell@linaro.org>2014-04-25 13:07:15 +0100
commit6e9ac7c4dd025c713833b56076cb5c000432fc35 (patch)
tree7ace782b9ff92ec39f78ea232e08f31cc20181e7 /risugen
parentee161eb958df4a9127fa92d34bca3ad26b0f6eee (diff)
aarch64: fix signal handling
fix signal handling to work on aarch64. We don't mess with SP, mainly. Signed-off-by: Claudio Fontana <claudio.fontana@linaro.org>
Diffstat (limited to 'risugen')
-rwxr-xr-xrisugen4
1 files changed, 2 insertions, 2 deletions
diff --git a/risugen b/risugen
index d8f229f..329f381 100755
--- a/risugen
+++ b/risugen
@@ -416,8 +416,8 @@ sub write_random_aarch64_regdata()
# TODO full 64 bit pattern instead of 32
write_mov_ri($i, rand(0xffffffff));
}
- write_mov_rr(31, 0); # move x0 to sp
- write_mov_ri(0, rand(0xffffffff)); # regen x0
+#write_mov_rr(31, 0); # move x0 to sp
+#write_mov_ri(0, rand(0xffffffff)); # regen x0
}
sub write_random_register_data()