mirror of
https://git.freebsd.org/ports.git
synced 2025-05-13 07:41:50 -04:00
the bsd-user targets on 8 and 9. - Switch emulators/qemu-user-static to be slave of emulators/qemu-sbruno. - Update emulators/qemu-devel to latest upstream release 2.2.0, now w/o bsd-user patches and knob again. (Or at least until the patches are merged upstream...) [1] - Add appropriate CONFLICTS to emulators/qemu too and bump its PORTREVISION. Suggested by: andrew [1] (for the benefit of testing aarch64 guests)
12 lines
467 B
C++
12 lines
467 B
C++
--- a/disas/libvixl/a64/disasm-a64.cc
|
|
+++ b/disas/libvixl/a64/disasm-a64.cc
|
|
@@ -1337,7 +1337,8 @@ void Disassembler::AppendPCRelativeOffse
|
|
int64_t offset) {
|
|
USE(instr);
|
|
char sign = (offset < 0) ? '-' : '+';
|
|
- AppendToOutput("#%c0x%" PRIx64, sign, std::abs(offset));
|
|
+ // AppendToOutput("#%c0x%" PRIx64, sign, std::abs(offset));
|
|
+ AppendToOutput("#%c0x%" PRIx64, sign, offset < 0 ? -offset : offset);
|
|
}
|
|
|
|
|