diff options
author | Ian Lance Taylor <ian@gcc.gnu.org> | 2012-12-03 03:25:18 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@gcc.gnu.org> | 2012-12-03 03:25:18 +0000 |
commit | 405c87c4d340b83a6aba4a036dd258855342750b (patch) | |
tree | 4f1a38beb547fc41b31fa8d28e24b825fdc69ad6 /gcc/go/gofrontend/expressions.h | |
parent | 9b8a4017255cc8cbba51df7fa8652457be4de579 (diff) | |
download | gcc-405c87c4d340b83a6aba4a036dd258855342750b.zip gcc-405c87c4d340b83a6aba4a036dd258855342750b.tar.gz gcc-405c87c4d340b83a6aba4a036dd258855342750b.tar.bz2 |
compiler: Fix nil func panics, constant type conversions.
From-SVN: r194064
Diffstat (limited to 'gcc/go/gofrontend/expressions.h')
-rw-r--r-- | gcc/go/gofrontend/expressions.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/go/gofrontend/expressions.h b/gcc/go/gofrontend/expressions.h index 7bc4242..eb4406d 100644 --- a/gcc/go/gofrontend/expressions.h +++ b/gcc/go/gofrontend/expressions.h @@ -2224,10 +2224,10 @@ class Numeric_constant check_int_type(Integer_type*, bool, Location) const; bool - check_float_type(Float_type*, bool, Location) const; + check_float_type(Float_type*, bool, Location); bool - check_complex_type(Complex_type*, bool, Location) const; + check_complex_type(Complex_type*, bool, Location); // The kinds of constants. enum Classification |