diff options
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/config/i386/i386.md | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 4b4b9bf..d5db6cc 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2002-01-22 Janis Johnson <janis187@us.ibm.com> + + PR target/5379 + * config/i386/i386.md (prefetch_sse): Specify "p" as a constraint + for the address operand. + 2002-01-22 Richard Henderson <rth@redhat.com> * config/alpha/freebsd.h (FUNCTION_PROFILER): Remove. diff --git a/gcc/config/i386/i386.md b/gcc/config/i386/i386.md index a0eba57..b9f6c15 100644 --- a/gcc/config/i386/i386.md +++ b/gcc/config/i386/i386.md @@ -19624,7 +19624,7 @@ }) (define_insn "*prefetch_sse" - [(prefetch (match_operand:SI 0 "address_operand" "") + [(prefetch (match_operand:SI 0 "address_operand" "p") (const_int 0) (match_operand:SI 1 "const_int_operand" ""))] "TARGET_PREFETCH_SSE" |