fujitsu / xbyak_aarch64

Apache License 2.0
186 stars 39 forks source link

fix cbz/cbnz/tbz/tbnz #69

Closed kawakami-k closed 1 year ago

kawakami-k commented 1 year ago

C++ reference should be used for the following case, otherwise L(Done) uses a reference to an object that no longer exists.

Label Done;
cbz(XReg(0), Done);
L(Done);