Files
oldlinux-files/gnu/gcc/gccdiff-1.40/fold-const.c.c
2024-02-19 00:24:47 -05:00

27 lines
661 B
C
Raw Permalink Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
*** originals/fold-const.c Sat Aug 17 21:29:11 1991
--- fold-const.c Sat Aug 17 21:29:53 1991
***************
*** 138,143 ****
--- 138,158 ----
}
}
}
+ #if (defined(CROSS_MINIX) || defined(NATIVE_MINIX))
+ #ifdef m68k /* Only needed for MINIX-68k - ajm */
+ tree
+ cast_to_sizeof_type(t)
+ tree t;
+ {
+ extern int flag_traditional;
+
+ t = copy_node(t);
+ TREE_TYPE(t) = flag_traditional ? integer_type_node : unsigned_type_node;
+ force_fit_type(t);
+ return t;
+ }
+ #endif /* m68k */
+ #endif /* CROSS_MINIX || NATIVE_MINIX */
/* Add two 64-bit integers with 64-bit result.
Each argument is given as two `int' pieces.