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

ruby-changes:50229

From: nobu <ko1@a...>
Date: Sat, 10 Feb 2018 19:07:50 +0900 (JST)
Subject: [ruby-changes:50229] nobu:r62346 (trunk): mjit.c: constified command arguments

nobu	2018-02-10 19:07:40 +0900 (Sat, 10 Feb 2018)

  New Revision: 62346

  https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=62346

  Log:
    mjit.c: constified command arguments

  Modified files:
    trunk/mjit.c
Index: mjit.c
===================================================================
--- mjit.c	(revision 62345)
+++ mjit.c	(revision 62346)
@@ -573,10 +573,10 @@ free_list(struct rb_mjit_unit_list *list https://github.com/ruby/ruby/blob/trunk/mjit.c#L573
 
    XXX_USE_PCH_ARAGS define additional options to use the precomiled
    header.  */
-static const char *GCC_DEBUG_ARGS[] = {"-O0", "-g", NULL};
-static const char *GCC_OPTIMIZE_ARGS[] = {"-O2", NULL};
+static const char *const GCC_DEBUG_ARGS[] = {"-O0", "-g", NULL};
+static const char *const GCC_OPTIMIZE_ARGS[] = {"-O2", NULL};
 
-static const char *GCC_COMMON_ARGS[] = {
+static const char *const GCC_COMMON_ARGS[] = {
     MJIT_CC,
 #ifdef __clang__
 # ifdef __MACH__
@@ -592,7 +592,7 @@ static const char *GCC_COMMON_ARGS[] = { https://github.com/ruby/ruby/blob/trunk/mjit.c#L592
     NULL
 };
 
-static const char *GCC_LDSHARED_ARGS[] = {
+static const char *const GCC_LDSHARED_ARGS[] = {
     "-Wl,-undefined", "-Wl,dynamic_lookup",
     NULL
 };
@@ -605,7 +605,7 @@ static const char GCC_USE_PCH_ARGS[] = https://github.com/ruby/ruby/blob/trunk/mjit.c#L605
 #endif
     ;
 
-static const char *GCC_EMIT_PCH_ARGS[] = {
+static const char *const GCC_EMIT_PCH_ARGS[] = {
 #ifdef __clang__
     "-emit-pch",
 #endif
@@ -613,9 +613,9 @@ static const char *GCC_EMIT_PCH_ARGS[] = https://github.com/ruby/ruby/blob/trunk/mjit.c#L613
 };
 
 #ifdef _MSC_VER
-static const char *VC_COMMON_ARGS[] = {MJIT_CC, "-MD", "-LD", NULL};
-static const char *VC_DEBUG_ARGS[] = {"-O0", "-Zi", NULL};
-static const char *VC_OPTIMIZE_ARGS[] = {
+static const char *const VC_COMMON_ARGS[] = {MJIT_CC, "-MD", "-LD", NULL};
+static const char *const VC_DEBUG_ARGS[] = {"-O0", "-Zi", NULL};
+static const char *const VC_OPTIMIZE_ARGS[] = {
 # if _MSC_VER < 1400
     "-O2b2xg-",
 # else

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

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