diff options
author | Jeff Law <law@gcc.gnu.org> | 1995-12-09 23:07:52 -0700 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1995-12-09 23:07:52 -0700 |
commit | 2e742d899d75a0e44e605d3d4be58c44b75a2a88 (patch) | |
tree | 5f179fbfe0e72406506df42d6ee7322042e048cc /gcc | |
parent | caca3c8a0325fb2b5fc674777ad658bc5058b6c0 (diff) | |
download | gcc-2e742d899d75a0e44e605d3d4be58c44b75a2a88.zip gcc-2e742d899d75a0e44e605d3d4be58c44b75a2a88.tar.gz gcc-2e742d899d75a0e44e605d3d4be58c44b75a2a88.tar.bz2 |
pa.md (millicode delay slot description): Remove reference to defunct TARGET_MILLICODE_LONG_CALLS.
* pa.md (millicode delay slot description): Remove reference
to defunct TARGET_MILLICODE_LONG_CALLS.
From-SVN: r10694
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config/pa/pa.md | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/gcc/config/pa/pa.md b/gcc/config/pa/pa.md index 4f3c92a..b758aa8 100644 --- a/gcc/config/pa/pa.md +++ b/gcc/config/pa/pa.md @@ -101,11 +101,10 @@ [(eq_attr "in_call_delay" "true") (nil) (nil)]) ;; millicode call delay slot description. Note it disallows delay slot -;; when TARGET_PORTABLE_RUNTIME or TARGET_MILLICODE_LONG_CALLS is true. +;; when TARGET_PORTABLE_RUNTIME. (define_delay (eq_attr "type" "milli") [(and (eq_attr "in_call_delay" "true") - (and (eq (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0)) - (eq (symbol_ref "TARGET_MILLICODE_LONG_CALLS") (const_int 0)))) + (eq (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))) (nil) (nil)]) ;; Unconditional branch, return and other similar instructions. |