aboutsummaryrefslogtreecommitdiffstats
path: root/vm_core.h
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-08-03 00:16:34 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-08-03 00:16:34 +0000
commit1ce7451811aca8f35ccb73879d852b724db8dae2 (patch)
treefb4905435481c6e2286d79195b0059bcbfaf73bd /vm_core.h
parentd757d7ed4106abe1f1e4b5d80eae4a1943a31b1b (diff)
downloadruby-1ce7451811aca8f35ccb73879d852b724db8dae2.tar.gz
* vm_core.h: introduce VM_FRAME_FLAG_CFRAME to represent cfp->iseq
type. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@55801 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'vm_core.h')
-rw-r--r--vm_core.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/vm_core.h b/vm_core.h
index 7a6f3982ce..385c482698 100644
--- a/vm_core.h
+++ b/vm_core.h
@@ -978,6 +978,7 @@ enum {
VM_FRAME_FLAG_PASSED = 0x0010,
VM_FRAME_FLAG_FINISH = 0x0020,
VM_FRAME_FLAG_BMETHOD = 0x0040,
+ VM_FRAME_FLAG_CFRAME = 0x0080,
/* env flag */
VM_ENV_FLAG_LOCAL = 0x0002,