* sdbout.c (sdbout_one_type): Fix braces in switch.

From-SVN: r148845
This commit is contained in:
Rainer Orth 2009-06-23 10:19:18 +00:00 committed by Rainer Orth
parent c0985d4ed8
commit b6d83244a3
2 changed files with 7 additions and 3 deletions

View File

@ -1,3 +1,7 @@
2009-06-23 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
* sdbout.c (sdbout_one_type): Fix braces in switch.
2009-06-23 Richard Guenther <rguenther@suse.de>
* tree-ssa-structalias.c (struct variable_info): Add is_global_var

View File

@ -1237,10 +1237,10 @@ sdbout_one_type (tree type)
PUT_SDB_SIZE (size);
PUT_SDB_ENDEF;
break;
default:
break;
}
default:
break;
}
}