From 1e5f62b4fcdce2ccc8d6527fec89e6e0982985e0 Mon Sep 17 00:00:00 2001 From: Mathieu Desnoyers Date: Tue, 17 Jul 2012 15:10:51 -0400 Subject: [PATCH] Filter: add missing specialized op names Signed-off-by: Mathieu Desnoyers --- liblttng-ust/lttng-filter.c | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/liblttng-ust/lttng-filter.c b/liblttng-ust/lttng-filter.c index d5b2e207..2e9bc333 100644 --- a/liblttng-ust/lttng-filter.c +++ b/liblttng-ust/lttng-filter.c @@ -71,6 +71,20 @@ static const char *opnames[] = { [ FILTER_OP_GE_DOUBLE ] = "GE_DOUBLE", [ FILTER_OP_LE_DOUBLE ] = "LE_DOUBLE", + /* Mixed S64-double binary comparators */ + [ FILTER_OP_EQ_DOUBLE_S64 ] = "EQ_DOUBLE_S64", + [ FILTER_OP_NE_DOUBLE_S64 ] = "NE_DOUBLE_S64", + [ FILTER_OP_GT_DOUBLE_S64 ] = "GT_DOUBLE_S64", + [ FILTER_OP_LT_DOUBLE_S64 ] = "LT_DOUBLE_S64", + [ FILTER_OP_GE_DOUBLE_S64 ] = "GE_DOUBLE_S64", + [ FILTER_OP_LE_DOUBLE_S64 ] = "LE_DOUBLE_S64", + + [ FILTER_OP_EQ_S64_DOUBLE ] = "EQ_S64_DOUBLE", + [ FILTER_OP_NE_S64_DOUBLE ] = "NE_S64_DOUBLE", + [ FILTER_OP_GT_S64_DOUBLE ] = "GT_S64_DOUBLE", + [ FILTER_OP_LT_S64_DOUBLE ] = "LT_S64_DOUBLE", + [ FILTER_OP_GE_S64_DOUBLE ] = "GE_S64_DOUBLE", + [ FILTER_OP_LE_S64_DOUBLE ] = "LE_S64_DOUBLE", /* unary */ [ FILTER_OP_UNARY_PLUS ] = "UNARY_PLUS", -- 2.34.1