@@ -1,6 +1,6 @@
// RUN: %dxc -E main -T cs_6_0 %s | FileCheck %s
-// CHECK: %class.StructuredBuffer = type { %class.matrix.float.4.4 }
+// CHECK: %"class.StructuredBuffer<matrix<float, 4, 4> >" = type { %class.matrix.float.4.4 }
StructuredBuffer<matrix> buf1;
// Should be equivalent to:
@@ -47,7 +47,7 @@ float4 fn2(in Special in1: SEMANTIC_IN) : SEMANTIC_OUT {
// CHECK: getelementptr
// CHECK: load i32, i32*
// CHECK: sitofp i32
- // CHECK: fadd float
+ // CHECK: fadd fast float
return in1.member + (float)s_special.a[i];
}