From 977bec12363e7e87a19ad81aa063fbf2b4112493 Mon Sep 17 00:00:00 2001 From: nobu Date: Thu, 6 Sep 2012 05:49:51 +0000 Subject: .gdbinit: FLONUM support * .gdbinit (rp): FLONUM support. * include/ruby/ruby.h (ruby_special_consts): define FLONUM constants always, so that they are available from gdb. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36917 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- include/ruby/ruby.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'include/ruby/ruby.h') diff --git a/include/ruby/ruby.h b/include/ruby/ruby.h index 61a5a50eeb..bab4a00bda 100644 --- a/include/ruby/ruby.h +++ b/include/ruby/ruby.h @@ -410,6 +410,8 @@ enum ruby_special_consts { RUBY_IMMEDIATE_MASK = 0x03, RUBY_FIXNUM_FLAG = 0x01, + RUBY_FLONUM_MASK = 0x00, /* any values ANDed with FLONUM_MASK cannot be FLONUM_FLAG */ + RUBY_FLONUM_FLAG = 0x02, RUBY_SYMBOL_FLAG = 0x0e, RUBY_SPECIAL_SHIFT = 8 #endif -- cgit v1.2.3