emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r108724: nt/config.nt (_Noreturn): Do


From: Eli Zaretskii
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r108724: nt/config.nt (_Noreturn): Don't reference __SUNPRO_C.
Date: Sun, 24 Jun 2012 21:31:31 +0300
User-agent: Bazaar (2.5.0)

------------------------------------------------------------
revno: 108724
fixes bug: http://debbugs.gnu.org/11750
committer: Eli Zaretskii <address@hidden>
branch nick: trunk
timestamp: Sun 2012-06-24 21:31:31 +0300
message:
  nt/config.nt (_Noreturn): Don't reference __SUNPRO_C.
modified:
  nt/ChangeLog
  nt/config.nt
=== modified file 'nt/ChangeLog'
--- a/nt/ChangeLog      2012-06-24 17:39:14 +0000
+++ b/nt/ChangeLog      2012-06-24 18:31:31 +0000
@@ -1,3 +1,7 @@
+2012-06-24  Eli Zaretskii  <address@hidden>
+
+       * config.nt (_Noreturn): Don't reference __SUNPRO_C.
+
 2012-06-24  Paul Eggert  <address@hidden>
 
        Switch from NO_RETURN to C11's _Noreturn (Bug#11750).

=== modified file 'nt/config.nt'
--- a/nt/config.nt      2012-06-24 17:39:14 +0000
+++ b/nt/config.nt      2012-06-24 18:31:31 +0000
@@ -498,8 +498,7 @@
 /* The _Noreturn keyword of C11.  */
 #if ! (defined _Noreturn \
        || (defined __STDC_VERSION__ && 201112 <= __STDC_VERSION__))
-# if (3 <= __GNUC__ || (__GNUC__ == 2 && 8 <= __GNUC_MINOR__) \
-      || 0x5110 <= __SUNPRO_C)
+# if (3 <= __GNUC__ || (__GNUC__ == 2 && 8 <= __GNUC_MINOR__))
 #  define _Noreturn __attribute__ ((__noreturn__))
 # elif defined _MSC_VER && 1200 <= _MSC_VER
 #  define _Noreturn __declspec (noreturn)


reply via email to

[Prev in Thread] Current Thread [Next in Thread]