Commit b6d83244 by Rainer Orth Committed by Rainer Orth

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

From-SVN: r148845
parent c0985d4e
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
......
......@@ -1237,10 +1237,10 @@ sdbout_one_type (tree type)
PUT_SDB_SIZE (size);
PUT_SDB_ENDEF;
break;
default:
break;
}
default:
break;
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment