Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 6a7b2ce

Browse files
committed
1 parent 43cc4ee commit 6a7b2ce

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/include/jit/jit.h

+5-5
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@
1717

1818
/* Flags determining what kind of JIT operations to perform */
1919
#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
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)
2525

2626

2727
typedef struct JitContext

0 commit comments

Comments
 (0)