================ @@ -133,6 +134,33 @@ LogicalResult CvtFloatToTF32Op::verify() { return success(); } +bool CvtToF6x2Op::isPacked() { + if (getDst().getType().isInteger(16)) { + return true; + } + return false; ---------------- Wolfram70 wrote: fixed https://github.com/llvm/llvm-project/pull/136537