svn commit: r375917 - head/emulators/qemu-sbruno/files

Juergen Lock nox at FreeBSD.org
Thu Jan 1 12:38:19 UTC 2015


Author: nox
Date: Thu Jan  1 12:38:18 2015
New Revision: 375917
URL: https://svnweb.freebsd.org/changeset/ports/375917
QAT: https://qat.redports.org/buildarchive/r375917/

Log:
  (Attempt to) fix build on 9.1/i386.
  
  Submitted by:	beefy1 via pkg-fallout

Added:
  head/emulators/qemu-sbruno/files/patch-disas-libvixl-a64-disasm-a64.cc   (contents, props changed)

Added: head/emulators/qemu-sbruno/files/patch-disas-libvixl-a64-disasm-a64.cc
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/emulators/qemu-sbruno/files/patch-disas-libvixl-a64-disasm-a64.cc	Thu Jan  1 12:38:18 2015	(r375917)
@@ -0,0 +1,12 @@
+--- 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);
+ }
+ 
+ 


More information about the svn-ports-all mailing list