diff options
author | Jeff Law <law@gcc.gnu.org> | 1993-04-24 11:07:59 -0600 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1993-04-24 11:07:59 -0600 |
commit | c495c0c0152f1d928e3b38600fbf01b21114e6d4 (patch) | |
tree | 7e029f8f2431b85f05e316a8e2b539d9291a8016 | |
parent | 54b1de55505b7fda1731ca8849063ba1386bbba6 (diff) | |
download | gcc-c495c0c0152f1d928e3b38600fbf01b21114e6d4.zip gcc-c495c0c0152f1d928e3b38600fbf01b21114e6d4.tar.gz gcc-c495c0c0152f1d928e3b38600fbf01b21114e6d4.tar.bz2 |
pa.h (INITIALIZE_TRAMPOLINE): Pass a register operand, not a memory operand to "cacheflush".
* pa.h (INITIALIZE_TRAMPOLINE): Pass a register operand, not a
memory operand to "cacheflush".
From-SVN: r4209
-rw-r--r-- | gcc/config/pa/pa.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/pa/pa.h b/gcc/config/pa/pa.h index 640e92f..17198ef 100644 --- a/gcc/config/pa/pa.h +++ b/gcc/config/pa/pa.h @@ -999,7 +999,7 @@ extern union tree_node *current_function_decl; /* fdc and fic only use registers for the address to flush, \ they do not accept integer displacements. */ \ addr = force_reg (SImode, (TRAMP)); \ - emit_insn (gen_cacheflush (gen_rtx (MEM, Pmode, addr))); \ + emit_insn (gen_cacheflush (addr)); \ } /* Emit code for a call to builtin_saveregs. We must emit USE insns which |