Add a deque, implemented as a circular queue, to libpspp.
[pspp] / src / language / expressions / parse.inc.pl
index ea878c92ccec4fe8db8a603a416203803da78689..bab06d24517a423502e5ac0b7ffa3e5a61382aa0 100644 (file)
@@ -55,6 +55,8 @@ sub generate_output {
        push (@flags, "OPF_NONOPTIMIZABLE") if !$op->{OPTIMIZABLE};
        push (@flags, "OPF_EXTENSION") if $op->{EXTENSION};
        push (@flags, "OPF_UNIMPLEMENTED") if $op->{UNIMPLEMENTED};
+       push (@flags, "OPF_PERM_ONLY") if $op->{PERM_ONLY};
+       push (@flags, "OPF_NO_ABBREV") if $op->{NO_ABBREV};
        push (@members, @flags ? join (' | ', @flags) : 0);
 
        push (@members, "OP_$op->{RETURNS}{NAME}");