summaryrefslogtreecommitdiff
path: root/gc.c
diff options
context:
space:
mode:
authortarui <tarui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-06-18 13:37:09 +0000
committertarui <tarui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-06-18 13:37:09 +0000
commit0a3f79310f0135c1f48af0b5147e9bd0b830bd16 (patch)
treed2f5f4f09e154f66e7ba0d8aab5de3846f58df23 /gc.c
parent31e1c326760f8ac018de87cef7a4fbec960f60d3 (diff)
* gc.c (gc_profile_record_flag): reason seems like one-hot encoding.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@41388 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'gc.c')
-rw-r--r--gc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gc.c b/gc.c
index 057e6c8862..c85c5520ce 100644
--- a/gc.c
+++ b/gc.c
@@ -161,7 +161,7 @@ typedef enum {
GPR_FLAG_MALLOC = 0x08,
GPR_FLAG_METHOD = 0x10,
GPR_FLAG_CAPI = 0x20,
- GPR_FLAG_STRESS = 0x30
+ GPR_FLAG_STRESS = 0x40
} gc_profile_record_flag;
typedef struct gc_profile_record {