[前][次][番号順一覧][スレッド一覧]

ruby-changes:2229

From: ko1@a...
Date: 16 Oct 2007 18:30:05 +0900
Subject: [ruby-changes:2229] akr - Ruby:r13720 (trunk): * debug.c: use enum for constants for gdb if possible.

akr	2007-10-16 18:29:32 +0900 (Tue, 16 Oct 2007)

  New Revision: 13720

  Modified files:
    trunk/ChangeLog
    trunk/debug.c

  Log:
    * debug.c: use enum for constants for gdb if possible.


  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/trunk/ChangeLog?r1=13720&r2=13719
  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/trunk/debug.c?r1=13720&r2=13719

Index: debug.c
===================================================================
--- debug.c	(revision 13719)
+++ debug.c	(revision 13720)
@@ -21,44 +21,43 @@
     enum ruby_value_type        value_type;
     enum node_type              node_type;
     enum {
-        RUBY_ENCODING_SHIFT = ENCODING_SHIFT
+        RUBY_ENCODING_SHIFT = ENCODING_SHIFT,
+        RUBY_FL_MARK        = FL_MARK,
+        RUBY_FL_RESERVED    = FL_RESERVED,
+        RUBY_FL_FINALIZE    = FL_FINALIZE,
+        RUBY_FL_TAINT       = FL_TAINT,
+        RUBY_FL_EXIVAR      = FL_EXIVAR,
+        RUBY_FL_FREEZE      = FL_FREEZE,
+        RUBY_FL_SINGLETON   = FL_SINGLETON,
+        RUBY_FL_USER0       = FL_USER0,
+        RUBY_FL_USER1       = FL_USER1,
+        RUBY_FL_USER2       = FL_USER2,
+        RUBY_FL_USER3       = FL_USER3,
+        RUBY_FL_USER4       = FL_USER4,
+        RUBY_FL_USER5       = FL_USER5,
+        RUBY_FL_USER6       = FL_USER6,
+        RUBY_FL_USER7       = FL_USER7,
+        RUBY_FL_USER8       = FL_USER8,
+        RUBY_FL_USER9       = FL_USER9,
+        RUBY_FL_USER10      = FL_USER10,
+        RUBY_FL_USER11      = FL_USER11,
+        RUBY_FL_USER12      = FL_USER12,
+        RUBY_FL_USER13      = FL_USER13,
+        RUBY_FL_USER14      = FL_USER14,
+        RUBY_FL_USER15      = FL_USER15,
+        RUBY_FL_USER16      = FL_USER16,
+        RUBY_FL_USER17      = FL_USER17,
+        RUBY_FL_USER18      = FL_USER18,
+        RUBY_FL_USER19      = FL_USER19,
+        RUBY_FL_USHIFT      = FL_USHIFT,
+        RUBY_NODE_NEWLINE   = NODE_NEWLINE,
+        RUBY_NODE_TYPESHIFT = NODE_TYPESHIFT,
+        RUBY_NODE_TYPEMASK  = NODE_TYPEMASK,
+        RUBY_NODE_LSHIFT    = NODE_LSHIFT,
     } various;
 } dummy_gdb_enums;
 
-const VALUE RUBY_FL_MARK      = FL_MARK;
-const VALUE RUBY_FL_RESERVED  = FL_RESERVED;
-const VALUE RUBY_FL_FINALIZE  = FL_FINALIZE;
-const VALUE RUBY_FL_TAINT     = FL_TAINT;
-const VALUE RUBY_FL_EXIVAR    = FL_EXIVAR;
-const VALUE RUBY_FL_FREEZE    = FL_FREEZE;
-const VALUE RUBY_FL_SINGLETON = FL_SINGLETON;
-const VALUE RUBY_FL_USER0     = FL_USER0;
-const VALUE RUBY_FL_USER1     = FL_USER1;
-const VALUE RUBY_FL_USER2     = FL_USER2;
-const VALUE RUBY_FL_USER3     = FL_USER3;
-const VALUE RUBY_FL_USER4     = FL_USER4;
-const VALUE RUBY_FL_USER5     = FL_USER5;
-const VALUE RUBY_FL_USER6     = FL_USER6;
-const VALUE RUBY_FL_USER7     = FL_USER7;
-const VALUE RUBY_FL_USER8     = FL_USER8;
-const VALUE RUBY_FL_USER9     = FL_USER9;
-const VALUE RUBY_FL_USER10    = FL_USER10;
-const VALUE RUBY_FL_USER11    = FL_USER11;
-const VALUE RUBY_FL_USER12    = FL_USER12;
-const VALUE RUBY_FL_USER13    = FL_USER13;
-const VALUE RUBY_FL_USER14    = FL_USER14;
-const VALUE RUBY_FL_USER15    = FL_USER15;
-const VALUE RUBY_FL_USER16    = FL_USER16;
-const VALUE RUBY_FL_USER17    = FL_USER17;
-const VALUE RUBY_FL_USER18    = FL_USER18;
-const VALUE RUBY_FL_USER19    = FL_USER19;
 const VALUE RUBY_FL_USER20    = FL_USER20;
-const int RUBY_FL_USHIFT = FL_USHIFT;
-
-const VALUE RUBY_NODE_NEWLINE = NODE_NEWLINE;
-const int RUBY_NODE_TYPESHIFT = NODE_TYPESHIFT;
-const VALUE RUBY_NODE_TYPEMASK = NODE_TYPEMASK;
-const int RUBY_NODE_LSHIFT = NODE_LSHIFT;
 const VALUE RUBY_NODE_LMASK = NODE_LMASK;
 
 void
Index: ChangeLog
===================================================================
--- ChangeLog	(revision 13719)
+++ ChangeLog	(revision 13720)
@@ -1,3 +1,7 @@
+Tue Oct 16 18:28:51 2007  Tanaka Akira  <akr@f...>
+
+	* debug.c: use enum for constants for gdb if possible.
+
 Tue Oct 16 18:20:10 2007  Tanaka Akira  <akr@f...>
 
 	* ruby.c, debug.c: move debug enum and constants to debug.c.

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml

[前][次][番号順一覧][スレッド一覧]