diff options
author | Janis Johnson <janis187@us.ibm.com> | 2002-01-22 21:19:27 +0000 |
---|---|---|
committer | Janis Johnson <janis@gcc.gnu.org> | 2002-01-22 21:19:27 +0000 |
commit | e8d52ba03e4c1ff14e81780ec8aa62d00e863a34 (patch) | |
tree | 063269b9c5c2b64fc0ed1df96eaafaca56deb09f | |
parent | cc7b420e73b7148d35d420a773fc12555afc1eb8 (diff) | |
download | gcc-e8d52ba03e4c1ff14e81780ec8aa62d00e863a34.zip gcc-e8d52ba03e4c1ff14e81780ec8aa62d00e863a34.tar.gz gcc-e8d52ba03e4c1ff14e81780ec8aa62d00e863a34.tar.bz2 |
re PR target/5379 ([i386] internal error: Segmentation fault (prefetch related?))
PR target/5379
* config/i386/i386.md (prefetch_sse): Specify "p" as a constraint
for the address operand.
From-SVN: r49093
-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" |