diff options
author | Max Filippov <jcmvbkbc@gmail.com> | 2022-04-24 08:31:29 -0700 |
---|---|---|
committer | Max Filippov <jcmvbkbc@gmail.com> | 2022-05-06 15:27:40 -0700 |
commit | b9400b1fbaeb69af3e3052721fad79b2e46efc65 (patch) | |
tree | f2d07d9d7fb26892c71c68846dc04cedd7340e2a /tests/tcg | |
parent | c6f3f334d157ff6b9bdc4e1b9d9874234138836a (diff) |
tests/tcg/xtensa: fix build for cores without windowed registers
Don't try to initialize windowbase/windowstart in crt.S if they don't
exist.
Signed-off-by: Max Filippov <jcmvbkbc@gmail.com>
Diffstat (limited to 'tests/tcg')
-rw-r--r-- | tests/tcg/xtensa/crt.S | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/tcg/xtensa/crt.S b/tests/tcg/xtensa/crt.S index d9846acace..909872cd38 100644 --- a/tests/tcg/xtensa/crt.S +++ b/tests/tcg/xtensa/crt.S @@ -8,10 +8,12 @@ .text .global _start _start: +#if XCHAL_HAVE_WINDOWED movi a2, 1 wsr a2, windowstart movi a2, 0 wsr a2, windowbase +#endif movi a1, _fstack movi a2, 0x4000f wsr a2, ps |