|
P4C
The P4 Compiler
|
Loading...
Searching...
No Matches
19#ifndef BF_P4C_PHV_V2_SORT_MACROS_H_
20#define BF_P4C_PHV_V2_SORT_MACROS_H_
23#define IF_NEQ_RETURN_IS_LESS(a, b) \
24 if ((a) != (b)) return (a) < (b);
25#define IF_NEQ_RETURN_IS_GREATER(a, b) \
26 if ((a) != (b)) return (a) > (b);