]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/convert.h
re PR target/37170 (gcc.dg/weak/weak-1.c)
[thirdparty/gcc.git] / gcc / convert.h
CommitLineData
6de2de12 1/* Definition of functions in convert.c.
9dcd6f09 2 Copyright (C) 1993, 2000, 2003, 2004, 2007 Free Software Foundation, Inc.
6de2de12 3
1322177d 4This file is part of GCC.
6de2de12 5
1322177d
LB
6GCC is free software; you can redistribute it and/or modify it under
7the terms of the GNU General Public License as published by the Free
9dcd6f09 8Software Foundation; either version 3, or (at your option) any later
1322177d 9version.
6de2de12 10
1322177d
LB
11GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12WARRANTY; without even the implied warranty of MERCHANTABILITY or
13FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14for more details.
6de2de12
RK
15
16You should have received a copy of the GNU General Public License
9dcd6f09
NC
17along with GCC; see the file COPYING3. If not see
18<http://www.gnu.org/licenses/>. */
6de2de12 19
d0b25f9a
MA
20#ifndef GCC_CONVERT_H
21#define GCC_CONVERT_H
22
159b3be1
AJ
23extern tree convert_to_integer (tree, tree);
24extern tree convert_to_pointer (tree, tree);
25extern tree convert_to_real (tree, tree);
0f996086 26extern tree convert_to_fixed (tree, tree);
159b3be1
AJ
27extern tree convert_to_complex (tree, tree);
28extern tree convert_to_vector (tree, tree);
d0b25f9a
MA
29
30#endif /* GCC_CONVERT_H */