@@ -1554,16 +1554,22 @@ impl<'cx, 'tcx> Builder<'cx, 'tcx> {
15541554 self . err ( format ! ( "TensorClampMode not yet supported: {word}" ) ) ;
15551555 }
15561556 ( OperandKind :: TensorAddressingOperands , Some ( word) ) => {
1557- self . err ( format ! ( "TensorAddressingOperands not yet supported: {word}" ) ) ;
1557+ self . err ( format ! (
1558+ "TensorAddressingOperands not yet supported: {word}"
1559+ ) ) ;
15581560 }
15591561 ( OperandKind :: FPEncoding , Some ( word) ) => {
15601562 self . err ( format ! ( "FPEncoding not yet supported: {word}" ) ) ;
15611563 }
15621564 ( OperandKind :: NamedMaximumNumberOfRegisters , Some ( word) ) => {
1563- self . err ( format ! ( "NamedMaximumNumberOfRegisters not yet supported: {word}" ) ) ;
1565+ self . err ( format ! (
1566+ "NamedMaximumNumberOfRegisters not yet supported: {word}"
1567+ ) ) ;
15641568 }
15651569 ( OperandKind :: MatrixMultiplyAccumulateOperands , Some ( word) ) => {
1566- self . err ( format ! ( "MatrixMultiplyAccumulateOperands not yet supported: {word}" ) ) ;
1570+ self . err ( format ! (
1571+ "MatrixMultiplyAccumulateOperands not yet supported: {word}"
1572+ ) ) ;
15671573 }
15681574 // Catch-all for any other new operand kinds
15691575 ( kind, Some ( word) ) => {
@@ -1603,10 +1609,7 @@ pub const IMAGE_OPERANDS: &[(&str, ImageOperands)] = &[
16031609 ( "Sample" , ImageOperands :: SAMPLE ) ,
16041610 ( "MinLod" , ImageOperands :: MIN_LOD ) ,
16051611 ( "MakeTexelAvailable" , ImageOperands :: MAKE_TEXEL_AVAILABLE ) ,
1606- (
1607- "MakeTexelAvailableKHR" ,
1608- ImageOperands :: MAKE_TEXEL_AVAILABLE ,
1609- ) ,
1612+ ( "MakeTexelAvailableKHR" , ImageOperands :: MAKE_TEXEL_AVAILABLE ) ,
16101613 ( "MakeTexelVisible" , ImageOperands :: MAKE_TEXEL_VISIBLE ) ,
16111614 ( "MakeTexelVisibleKHR" , ImageOperands :: MAKE_TEXEL_VISIBLE ) ,
16121615 ( "NonPrivateTexel" , ImageOperands :: NON_PRIVATE_TEXEL ) ,
@@ -1689,15 +1692,9 @@ pub const MEMORY_ACCESS: &[(&str, MemoryAccess)] = &[
16891692 MemoryAccess :: MAKE_POINTER_AVAILABLE ,
16901693 ) ,
16911694 ( "MakePointerVisible" , MemoryAccess :: MAKE_POINTER_VISIBLE ) ,
1692- (
1693- "MakePointerVisibleKHR" ,
1694- MemoryAccess :: MAKE_POINTER_VISIBLE ,
1695- ) ,
1695+ ( "MakePointerVisibleKHR" , MemoryAccess :: MAKE_POINTER_VISIBLE ) ,
16961696 ( "NonPrivatePointer" , MemoryAccess :: NON_PRIVATE_POINTER ) ,
1697- (
1698- "NonPrivatePointerKHR" ,
1699- MemoryAccess :: NON_PRIVATE_POINTER ,
1700- ) ,
1697+ ( "NonPrivatePointerKHR" , MemoryAccess :: NON_PRIVATE_POINTER ) ,
17011698] ;
17021699pub const KERNEL_PROFILING_INFO : & [ ( & str , KernelProfilingInfo ) ] = & [
17031700 ( "None" , KernelProfilingInfo :: NONE ) ,
0 commit comments