Skip to content

Commit 13bce94

Browse files
Merge pull request #1150 from batocera-linux/fix-mesa-comp
fix mesa compilation
2 parents 22832b1 + 7c2817a commit 13bce94

1 file changed

Lines changed: 22 additions & 0 deletions

File tree

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
diff --git a/src/intel/compiler/jay/jay_ir.h b/src/intel/compiler/jay/jay_ir.h
2+
index 8307044..abf175a 100644
3+
--- a/src/intel/compiler/jay/jay_ir.h
4+
+++ b/src/intel/compiler/jay/jay_ir.h
5+
@@ -579,7 +579,7 @@ jay_type_is_any_float(enum jay_type t)
6+
return jay_base_type(t) == JAY_TYPE_F || jay_base_type(t) == JAY_TYPE_BF;
7+
}
8+
9+
-enum jay_predication : uint8_t {
10+
+enum jay_predication {
11+
/** No predication. */
12+
JAY_NOT_PREDICATED = 0,
13+
14+
@@ -634,7 +634,7 @@ typedef struct jay_inst {
15+
bool decrement_dep:1;
16+
unsigned padding :12;
17+
18+
- enum jay_predication predication;
19+
+ uint8_t predication;
20+
enum jay_conditional_mod conditional_mod;
21+
22+
jay_def cond_flag; /**< conditional flag */

0 commit comments

Comments
 (0)