[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [goto-label v2] memory: fix label syntax
When compiling this file with gcc, the compiler happily accepts the sequence of a label followed by an attribute. However, this sequence does not follow the gcc documentation. Hence, other compilers might stumble upon this statement. To be able to compile Xen with goto-cc (the compiler of the CPROVER tool suite), the missing semicolon is added in this commit. Reported-by: Elizabeth Polgreen <polgreen@xxxxxxxxx> Signed-off-by: Norbert Manthey <nmanthey@xxxxxxxxx> --- xen/common/memory.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xen/common/memory.c b/xen/common/memory.c index 75010b7..e29d596 100644 --- a/xen/common/memory.c +++ b/xen/common/memory.c @@ -387,7 +387,7 @@ int guest_remove_page(struct domain *d, unsigned long gmfn) put_page(page); put_page(page); - out_put_gfn: __maybe_unused + out_put_gfn: __maybe_unused; put_gfn(d, gmfn); /* -- 2.7.4 Amazon Development Center Germany GmbH Berlin - Dresden - Aachen main office: Krausenstr. 38, 10117 Berlin Geschaeftsfuehrer: Dr. Ralf Herbrich, Christian Schlaeger Ust-ID: DE289237879 Eingetragen am Amtsgericht Charlottenburg HRB 149173 B _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxxxxxxxxx https://lists.xenproject.org/mailman/listinfo/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |