diff options
| author | Peter Maydell <peter.maydell@linaro.org> | 2015-01-20 15:19:32 +0000 |
|---|---|---|
| committer | Peter Maydell <peter.maydell@linaro.org> | 2015-01-20 15:19:32 +0000 |
| commit | 0c021c1fd2c4ec3c68c59232ccee012c067bc682 (patch) | |
| tree | e826aee39bfc6baeeddbce2f31ff2853698ce4bc /include/exec/cpu_ldst.h | |
| parent | ec53b45bcd1f74f7a4c31331fa6d50b402cd6d26 (diff) | |
| download | focaccia-qemu-0c021c1fd2c4ec3c68c59232ccee012c067bc682.tar.gz focaccia-qemu-0c021c1fd2c4ec3c68c59232ccee012c067bc682.zip | |
cpu_ldst.h: Remove unused ldul_ macros
The five ldul_ macros are not used anywhere and are marked up with an XXX comment. "ldul" is a non-standard prefix for our family of load instructions: we don't mark 32-bit accesses for signedness because they return a 32 bit quantity. So just delete them. Signed-off-by: Peter Maydell <peter.maydell@linaro.org> Reviewed-by: Paolo Bonzini <pbonzini@redhat.com> Reviewed-by: Richard Henderson <rth@twiddle.net> Message-id: 1421334118-3287-2-git-send-email-peter.maydell@linaro.org
Diffstat (limited to 'include/exec/cpu_ldst.h')
| -rw-r--r-- | include/exec/cpu_ldst.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/include/exec/cpu_ldst.h b/include/exec/cpu_ldst.h index e5550e7175..47008311e0 100644 --- a/include/exec/cpu_ldst.h +++ b/include/exec/cpu_ldst.h @@ -151,15 +151,6 @@ #else -/* XXX: find something cleaner. - * Furthermore, this is false for 64 bits targets - */ -#define ldul_user ldl_user -#define ldul_kernel ldl_kernel -#define ldul_hypv ldl_hypv -#define ldul_executive ldl_executive -#define ldul_supervisor ldl_supervisor - /* The memory helpers for tcg-generated code need tcg_target_long etc. */ #include "tcg.h" |