File tree Expand file tree Collapse file tree 1 file changed +0
-8
lines changed
mlir/lib/Conversion/XeVMToLLVM Expand file tree Collapse file tree 1 file changed +0
-8
lines changed Original file line number Diff line number Diff line change @@ -125,8 +125,6 @@ int32_t getL1CacheControl(OpType op) {
125
125
case LoadCacheControl::INVALIDATE_READ:
126
126
control = 4 ;
127
127
break ;
128
- default :
129
- break ;
130
128
}
131
129
} else {
132
130
switch (*op.getCacheControl ()) {
@@ -153,8 +151,6 @@ int32_t getL1CacheControl(OpType op) {
153
151
case StoreCacheControl::L1WB_L2UC_L3WB:
154
152
control = 4 ;
155
153
break ;
156
- default :
157
- break ;
158
154
}
159
155
}
160
156
return control;
@@ -184,8 +180,6 @@ int32_t getL3CacheControl(OpType op) {
184
180
case LoadCacheControl::INVALIDATE_READ:
185
181
control = 4 ;
186
182
break ;
187
- default :
188
- break ;
189
183
}
190
184
} else {
191
185
switch (*op.getCacheControl ()) {
@@ -208,8 +202,6 @@ int32_t getL3CacheControl(OpType op) {
208
202
case StoreCacheControl::L1WB_L2UC_L3WB:
209
203
control = 2 ;
210
204
break ;
211
- default :
212
- break ;
213
205
}
214
206
}
215
207
return control;
You can’t perform that action at this time.
0 commit comments