]> git.ipfire.org Git - thirdparty/grub.git/commitdiff
* grub-core/tests/setjmp_test.c: Ignore missing noreturn.
authorVladimir 'phcoder' Serbinenko <phcoder@gmail.com>
Sat, 11 May 2013 08:17:19 +0000 (10:17 +0200)
committerVladimir 'phcoder' Serbinenko <phcoder@gmail.com>
Sat, 11 May 2013 08:17:19 +0000 (10:17 +0200)
ChangeLog
grub-core/tests/setjmp_test.c

index 97b773d82d434a0a0d8be75b05fdb7c2e55d1f36..0dedc844b222ebbb037e3eb58456d5bc85361e53 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2013-05-11  Vladimir Serbinenko  <phcoder@gmail.com>
+
+       * grub-core/tests/setjmp_test.c: Ignore missing noreturn.
+
 2013-05-11  Vladimir Serbinenko  <phcoder@gmail.com>
 
        * grub-core/fs/hfspluscomp.c (grub_hfsplus_compress_attr): Add packed
index 29aab25351f95c63d165d1e1adfba11a1c3ef31f..4d315115c45c87389a5f521a18e577e3dae2eaf2 100644 (file)
@@ -25,6 +25,8 @@ GRUB_MOD_LICENSE ("GPLv3+");
 static grub_jmp_buf jmp_point;
 static int expected, ctr;
 
+#pragma GCC diagnostic ignored "-Wmissing-noreturn"
+
 static void
 jmp0 (void)
 {