diff options
author | Eric Botcazou <ebotcazou@adacore.com> | 2010-10-24 19:25:11 +0000 |
---|---|---|
committer | Eric Botcazou <ebotcazou@gcc.gnu.org> | 2010-10-24 19:25:11 +0000 |
commit | 0e7e15278e1a0e0c60a9b7a64a7159b479061371 (patch) | |
tree | e89c47e00cbc9b30907916789bc2a4e063af3582 /gcc | |
parent | 682e805aafd694fda5be69267d11a260de607aa6 (diff) | |
download | gcc-0e7e15278e1a0e0c60a9b7a64a7159b479061371.zip gcc-0e7e15278e1a0e0c60a9b7a64a7159b479061371.tar.gz gcc-0e7e15278e1a0e0c60a9b7a64a7159b479061371.tar.bz2 |
* config/sparc/sparc.c (sparc_type_code) <NULLPTR_TYPE>: New case.
From-SVN: r165904
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/config/sparc/sparc.c | 3 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 5644df4..4f250e7 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2010-10-24 Eric Botcazou <ebotcazou@adacore.com> + + * config/sparc/sparc.c (sparc_type_code) <NULLPTR_TYPE>: New case. + 2010-10-24 Paul Koning <ni1d@arrl.net> * config/pdp11/pdp11.md: Change length attribute to be in bytes. diff --git a/gcc/config/sparc/sparc.c b/gcc/config/sparc/sparc.c index 1898732..e23ede0 100644 --- a/gcc/config/sparc/sparc.c +++ b/gcc/config/sparc/sparc.c @@ -7729,7 +7729,8 @@ sparc_type_code (register tree type) case VECTOR_TYPE: case BOOLEAN_TYPE: /* Boolean truth value type. */ - case LANG_TYPE: /* ? */ + case LANG_TYPE: + case NULLPTR_TYPE: return qualifiers; default: |