Filter: index array, sequences, implement bitwise binary operators
[lttng-tools.git] / src / lib / lttng-ctl / filter / filter-visitor-ir-check-binary-op-nesting.c
index e093957c270422a0ee19221cbaffa755148c5f9c..aa3edd592378ea60c5df4af7895ee6d7e267d805 100644 (file)
@@ -53,10 +53,6 @@ int check_bin_op_nesting_recursive(struct ir_op *node, int nesting)
        {
                int ret;
 
-               if (nesting > 0) {
-                       fprintf(stderr, "[error] Nesting of binary operators is not allowed, except for logical operators.\n");
-                       return -EINVAL;
-               }
                ret = check_bin_op_nesting_recursive(node->u.binary.left,
                                nesting + 1);
                if (ret)
This page took 0.022967 seconds and 4 git commands to generate.