mirror of git://gcc.gnu.org/git/gcc.git
re PR target/69444 (recent changes broke x64_64 -> powerpc crosscompiler build)
PR target/69444 * config/rs6000/sfp-machine.h: Fix a typo in #ifndef - __NO_FPRS__ instead of ___NO_FPRS__. From-SVN: r232805
This commit is contained in:
parent
d902b330dc
commit
7d29695329
|
|
@ -1,3 +1,9 @@
|
|||
2016-01-25 Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
PR target/69444
|
||||
* config/rs6000/sfp-machine.h: Fix a typo in #ifndef - __NO_FPRS__
|
||||
instead of ___NO_FPRS__.
|
||||
|
||||
2016-01-21 Michael Meissner <meissner@linux.vnet.ibm.com>
|
||||
Steven Munroe <munroesj@linux.vnet.ibm.com>
|
||||
Tulio Magno Quites Machado Filho <tulioqm@br.ibm.com>
|
||||
|
|
@ -317,7 +323,7 @@
|
|||
* config/rl78/divmodhi.S: Update return register to r8,r9.
|
||||
Branch to main_loop_done_himode to pop registers before return.
|
||||
|
||||
2015-10-09 Venkataramanan kumar <venkataramanan.kumar@amd.com>
|
||||
2015-10-09 Venkataramanan Kumar <venkataramanan.kumar@amd.com>
|
||||
|
||||
* config/i386/cpuinfo.c (get_amd_cpu): Detect bdver4.
|
||||
(__cpu_indicator_init): Fix model selection for AMD CPUs.
|
||||
|
|
|
|||
|
|
@ -110,7 +110,7 @@ typedef int __gcc_CMPtype __attribute__ ((mode (__libgcc_cmp_return__)));
|
|||
floating point on pre-ISA 3.0 machines without the IEEE 128-bit floating
|
||||
point support. */
|
||||
|
||||
#ifndef ___NO_FPRS__
|
||||
#ifndef __NO_FPRS__
|
||||
#define ISA_BIT(x) (1LL << (63 - x))
|
||||
|
||||
/* Use the same bits of the FPSCR. */
|
||||
|
|
|
|||
Loading…
Reference in New Issue