Commit e220a047 by Richard Henderson Committed by Richard Henderson

* config/alpha/alpha.md (clear_cache): New pattern.

From-SVN: r187255
parent 6aa52a58
2012-05-07 Richard Henderson <rth@redhat.com>
* config/alpha/alpha.md (clear_cache): New pattern.
2012-05-07 Steven Bosscher <steven@gcc.gnu.org> 2012-05-07 Steven Bosscher <steven@gcc.gnu.org>
PR middle-end/53245 PR middle-end/53245
......
...@@ -4346,6 +4346,15 @@ ...@@ -4346,6 +4346,15 @@
"call_pal 0x86" "call_pal 0x86"
[(set_attr "type" "callpal")]) [(set_attr "type" "callpal")])
(define_expand "clear_cache"
[(match_operand:DI 0 "") ; region start
(match_operand:DI 1 "")] ; region end
""
{
emit_insn (gen_imb ());
DONE;
})
;; BUGCHK is documented common to OSF/1 and VMS PALcode. ;; BUGCHK is documented common to OSF/1 and VMS PALcode.
(define_insn "trap" (define_insn "trap"
[(trap_if (const_int 1) (const_int 0))] [(trap_if (const_int 1) (const_int 0))]
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment