aboutsummaryrefslogtreecommitdiffstats
path: root/addr2line.c
diff options
context:
space:
mode:
authorhsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-05-28 01:46:27 +0000
committerhsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-05-28 01:46:27 +0000
commitd47d4b1db3ed8fd50a2afb3ded6543c7bc66f84e (patch)
tree4d5a5b3ae0a378556538adb2367e5d6017fca2a6 /addr2line.c
parentd0a41180903ebba38638f428a0b487931405bad0 (diff)
downloadruby-d47d4b1db3ed8fd50a2afb3ded6543c7bc66f84e.tar.gz
* addr2line.c: drop to support ATARI ST platform. It was discontinued
more than two decades ago. [fix GH-1350] Patch by @cremno * include/ruby/ruby.h: ditto. * io.c: ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@55189 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'addr2line.c')
-rw-r--r--addr2line.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/addr2line.c b/addr2line.c
index b031710d71..a20e5000c4 100644
--- a/addr2line.c
+++ b/addr2line.c
@@ -36,11 +36,9 @@
/* Make alloca work the best possible way. */
#ifdef __GNUC__
-# ifndef atarist
-# ifndef alloca
-# define alloca __builtin_alloca
-# endif
-# endif /* atarist */
+# ifndef alloca
+# define alloca __builtin_alloca
+# endif
#else
# ifdef HAVE_ALLOCA_H
# include <alloca.h>