comparison gcc/config/h8300/genmova.sh @ 55:77e2b8dfacca gcc-4.4.5

update it from 4.4.3 to 4.5.0
author ryoma <e075725@ie.u-ryukyu.ac.jp>
date Fri, 12 Feb 2010 23:39:51 +0900
parents a06113de4d67
children 04ced10e8804
comparison
equal deleted inserted replaced
52:c156f1bd5cd9 55:77e2b8dfacca
1 #!/bin/sh 1 #!/bin/sh
2 # Generate mova.md, a file containing patterns that can be implemented 2 # Generate mova.md, a file containing patterns that can be implemented
3 # using the h8sx mova instruction. 3 # using the h8sx mova instruction.
4 4
5 # Copyright (C) 2004, 2009 Free Software Foundation, Inc.
6 #
7 # This file is part of GCC.
8 #
9 # GCC is free software; you can redistribute it and/or modify
10 # it under the terms of the GNU General Public License as published by
11 # the Free Software Foundation; either version 3, or (at your option)
12 # any later version.
13 #
14 # GCC is distributed in the hope that it will be useful,
15 # but WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 # GNU General Public License for more details.
18 #
19 # You should have received a copy of the GNU General Public License
20 # along with GCC; see the file COPYING3. If not see
21 # <http://www.gnu.org/licenses/>.
22
5 echo ";; -*- buffer-read-only: t -*-" 23 echo ";; -*- buffer-read-only: t -*-"
6 echo ";; Generated automatically from genmova.sh" 24 echo ";; Generated automatically from genmova.sh"
25 echo ";; Copyright (C) 2004, 2009 Free Software Foundation, Inc."
26 echo ";;"
27 echo ";; This file is part of GCC."
28 echo ";;"
29 echo ";; GCC is free software; you can redistribute it and/or modify"
30 echo ";; it under the terms of the GNU General Public License as published by"
31 echo ";; the Free Software Foundation; either version 3, or (at your option)"
32 echo ";; any later version."
33 echo ";;"
34 echo ";; GCC is distributed in the hope that it will be useful,"
35 echo ";; but WITHOUT ANY WARRANTY; without even the implied warranty of"
36 echo ";; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the"
37 echo ";; GNU General Public License for more details."
38 echo ";;"
39 echo ";; You should have received a copy of the GNU General Public License"
40 echo ";; along with GCC; see the file COPYING3. If not see"
41 echo ";; <http://www.gnu.org/licenses/>."
7 42
8 # Loop over modes for the source operand (the index). Only 8-bit and 43 # Loop over modes for the source operand (the index). Only 8-bit and
9 # 16-bit indices are allowed. 44 # 16-bit indices are allowed.
10 for s in QI HI; do 45 for s in QI HI; do
11 46