mirror of
https://git.freebsd.org/ports.git
synced 2025-05-01 19:16:39 -04:00
- fix build failures in i386 and amd64 due to compiler changes - fix numerous compilation warnings and logical errors that may trap in the future - convert all distribution files from DOS format to ease future changes - convert legacy patch file to new naming convention PR: 214990 Submitted by: bob@eager.cx (maintainer)
17 lines
722 B
C
17 lines
722 B
C
--- HP2100/hp2100_fp1.c.orig 2016-12-01 22:43:42 UTC
|
|
+++ HP2100/hp2100_fp1.c
|
|
@@ -1145,12 +1145,12 @@ if (operand_l && operand_r) {
|
|
*operand_l = fp_a; /* first op is accum */
|
|
}
|
|
|
|
-if (result) /* want result precision? */
|
|
+if (result) { /* want result precision? */
|
|
if ((opcode & 0120) == 0100) /* fix? */
|
|
*result = int_size; /* result is integer */
|
|
else /* all others */
|
|
*result = fp_size; /* result is fp */
|
|
-
|
|
+}
|
|
return;
|
|
}
|
|
|