1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

use __GNUC__ instead of __GCC__.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@67193 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
tadd 2019-03-08 00:35:53 +00:00
parent 4c1952f4bf
commit e185c9716e

View file

@ -17,7 +17,7 @@ typedef unsigned long lindex_t;
typedef VALUE GENTRY;
typedef rb_iseq_t *ISEQ;
#ifdef __GCC__
#ifdef __GNUC__
/* TODO: machine dependent prefetch instruction */
#define PREFETCH(pc)
#else