diff options
author | Sandra Loosemore <sandra@codesourcery.com> | 2014-05-14 17:18:33 -0400 |
---|---|---|
committer | Sandra Loosemore <sandra@gcc.gnu.org> | 2014-05-14 17:18:33 -0400 |
commit | 5d40b20f6efeace2533cd594fa782d55859b1d9f (patch) | |
tree | eda330189dbb57f979637859d224dab075465461 /gcc | |
parent | 014397c22e3a682f24b4d0e69ce2d336412b7264 (diff) | |
download | gcc-5d40b20f6efeace2533cd594fa782d55859b1d9f.zip gcc-5d40b20f6efeace2533cd594fa782d55859b1d9f.tar.gz gcc-5d40b20f6efeace2533cd594fa782d55859b1d9f.tar.bz2 |
nios2.md (nios2_cbranch): Fix paste-o in length attribute computation.
2014-05-14 Sandra Loosemore <sandra@codesourcery.com>
gcc/
* config/nios2/nios2.md (nios2_cbranch): Fix paste-o in
length attribute computation.
From-SVN: r210440
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/nios2/nios2.md | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 10774c7..c7fbc1a 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2014-05-14 Sandra Loosemore <sandra@codesourcery.com> + + * config/nios2/nios2.md (nios2_cbranch): Fix paste-o in + length attribute computation. + 2014-05-14 Richard Sandiford <rdsandiford@googlemail.com> PR debug/61188 diff --git a/gcc/config/nios2/nios2.md b/gcc/config/nios2/nios2.md index e3a803c..4057feb 100644 --- a/gcc/config/nios2/nios2.md +++ b/gcc/config/nios2/nios2.md @@ -877,8 +877,8 @@ [(set_attr "type" "control") (set (attr "length") (if_then_else - (and (ge (minus (match_dup 1) (pc)) (const_int -32768)) - (le (minus (match_dup 1) (pc)) (const_int 32764))) + (and (ge (minus (match_dup 3) (pc)) (const_int -32768)) + (le (minus (match_dup 3) (pc)) (const_int 32764))) (const_int 4) (const_int 8)))]) ;; Floating point comparisons |