This removes the last use of ARM_EL_EC_SHIFT.
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
---
target/arm/tcg/debug.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/target/arm/tcg/debug.c b/target/arm/tcg/debug.c
index 5214e3c08a8..07a52643e71 100644
--- a/target/arm/tcg/debug.c
+++ b/target/arm/tcg/debug.c
@@ -56,7 +56,7 @@ raise_exception_debug(CPUARMState *env, uint32_t excp, uint32_t syndrome)
* Similarly for watchpoint and breakpoint matches.
*/
assert(debug_el >= cur_el);
- syndrome |= (debug_el == cur_el) << ARM_EL_EC_SHIFT;
+ syndrome |= (debug_el == cur_el) << R_SYNDROME_EC_SHIFT;
raise_exception(env, excp, syndrome, debug_el);
}
--
2.47.3