Fix memory constraints in the inline-assembly stub that calls into secure
authorpatrick <patrick@openbsd.org>
Fri, 28 Apr 2023 10:19:07 +0000 (10:19 +0000)
committerpatrick <patrick@openbsd.org>
Fri, 28 Apr 2023 10:19:07 +0000 (10:19 +0000)
commit4e4da9dcd0e1c8b1670113f28f6c823b624b9a80
treee0ab6487f88726e87fb4e931c3bec7e95abef475
parent58721d3b459f565a5bd1d5eeeeadb3a058f8d18b
Fix memory constraints in the inline-assembly stub that calls into secure
mode.  Without this change the compiler doesn't realize that the memory
behind the array that contains the return values might have changed and
optimizes the access away.  With this change it properly access the array
to retrieve the returned values.

ok drahn@
sys/dev/fdt/qcscm.c