We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 43cc4ee commit 6a7b2ceCopy full SHA for 6a7b2ce
src/include/jit/jit.h
@@ -17,11 +17,11 @@
17
18
/* Flags determining what kind of JIT operations to perform */
19
#define PGJIT_NONE 0
20
-#define PGJIT_PERFORM 1 << 0
21
-#define PGJIT_OPT3 1 << 1
22
-#define PGJIT_INLINE 1 << 2
23
-#define PGJIT_EXPR 1 << 3
24
-#define PGJIT_DEFORM 1 << 4
+#define PGJIT_PERFORM (1 << 0)
+#define PGJIT_OPT3 (1 << 1)
+#define PGJIT_INLINE (1 << 2)
+#define PGJIT_EXPR (1 << 3)
+#define PGJIT_DEFORM (1 << 4)
25
26
27
typedef struct JitContext
0 commit comments