diff options
Diffstat (limited to 'gcc/objc')
-rw-r--r-- | gcc/objc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/objc/objc-encoding.c | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/gcc/objc/ChangeLog b/gcc/objc/ChangeLog index ddc670a..cf735d1 100644 --- a/gcc/objc/ChangeLog +++ b/gcc/objc/ChangeLog @@ -1,3 +1,8 @@ +2016-08-12 Marek Polacek <polacek@redhat.com> + + PR c/7652 + * objc-encoding.c (encode_type): Add FALLTHRU. + 2016-06-07 David Malcolm <dmalcolm@redhat.com> * objc-act.c (objc_build_component_ref): Update call diff --git a/gcc/objc/objc-encoding.c b/gcc/objc/objc-encoding.c index 95e9c8b..8fc2e5d 100644 --- a/gcc/objc/objc-encoding.c +++ b/gcc/objc/objc-encoding.c @@ -622,6 +622,7 @@ encode_type (tree type, int curtype, int format) } /* Else, they are encoded exactly like the integer type that is used by the compiler to store them. */ + /* FALLTHRU */ case INTEGER_TYPE: { char c; |