File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -5,12 +5,12 @@ Backend for [SPIR-V][spv] (Standard Portable Intermediate Representation).
5
5
*/
6
6
7
7
mod block;
8
+ mod f16_polyfill;
8
9
mod helpers;
9
10
mod image;
10
11
mod index;
11
12
mod instructions;
12
13
mod layout;
13
- mod f16_polyfill;
14
14
mod ray;
15
15
mod recyclable;
16
16
mod selection;
Original file line number Diff line number Diff line change @@ -1953,8 +1953,9 @@ impl Writer {
1953
1953
let needs_polyfill = self . needs_f16_polyfill ( ty_inner) ;
1954
1954
1955
1955
let pointer_type_id = if needs_polyfill {
1956
- let f32_value_local = super :: f16_polyfill:: F16IoPolyfill :: create_polyfill_type ( ty_inner)
1957
- . expect ( "needs_polyfill returned true but create_polyfill_type returned None" ) ;
1956
+ let f32_value_local =
1957
+ super :: f16_polyfill:: F16IoPolyfill :: create_polyfill_type ( ty_inner)
1958
+ . expect ( "needs_polyfill returned true but create_polyfill_type returned None" ) ;
1958
1959
1959
1960
let f32_type_id = self . get_localtype_id ( f32_value_local) ;
1960
1961
let ptr_id = self . get_pointer_type_id ( f32_type_id, class) ;
You can’t perform that action at this time.
0 commit comments