Integrated AS likes UAL, and can't handle pre-UAL garbage like thumb1 'mov r0, #0'.
Details
Details
Diff Detail
Diff Detail
Event Timeline
UnwindRegistersSave.S | ||
---|---|---|
310 | How about doing: #if __ARM_ARCH_ISA_THUMB == 1 movs r0, #0 #else mov r0, #0 #endif I don't see why we should have the side-effect if we can avoid it. |
Comment Actions
LGTM with the one inline comment.
UnwindRegistersSave.S | ||
---|---|---|
320 | A comment to indicate that the non-setting version is not available in T1 would ensure that someone coming along wouldn't try to merge this together. |
How about doing:
I don't see why we should have the side-effect if we can avoid it.