summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarl Williamson <public@khwilliamson.com>2012-11-19 17:39:58 -0700
committerKarl Williamson <public@khwilliamson.com>2012-11-19 18:00:43 -0700
commit1e00f0f1e1c04a8d4255720e5b26a4d3d6a985e6 (patch)
treecca4c513c217aa2f30f4c3bd6584a147411931ae
parent33e8a81374c209ff5ae32bda91d36bbe45951ce2 (diff)
downloadperl-1e00f0f1e1c04a8d4255720e5b26a4d3d6a985e6.tar.gz
embed.fnc: Fix flags problem for regposixcc
The static and inline flags are considered mutually exclusive. This is not a fatal embed error as something can't be inline unless it is also static, but the warning is there because the entry looks suspicious. Commit 2fd63cc5b615213574e0153ed2bf14d9df23c073 introduced the flags that caused the warning
-rw-r--r--embed.fnc2
1 files changed, 1 insertions, 1 deletions
diff --git a/embed.fnc b/embed.fnc
index d659737789..0aa6faf7bc 100644
--- a/embed.fnc
+++ b/embed.fnc
@@ -1982,7 +1982,7 @@ Es |I32 |study_chunk |NN struct RExC_state_t *pRExC_state \
EsRn |U32 |add_data |NN struct RExC_state_t *pRExC_state|U32 n \
|NN const char *s
rs |void |re_croak2 |NN const char* pat1|NN const char* pat2|...
-Eis |I32 |regpposixcc |NN struct RExC_state_t *pRExC_state \
+Ei |I32 |regpposixcc |NN struct RExC_state_t *pRExC_state \
|I32 value|NULLOK SV *free_me
Es |I32 |make_trie |NN struct RExC_state_t *pRExC_state \
|NN regnode *startbranch|NN regnode *first \