Browse Source

Fix tests failing after merge.

Tex Riddell 7 years ago
parent
commit
e835567cd2

+ 1 - 1
tools/clang/test/CodeGenHLSL/quick-test/default-matrix-in-template.hlsl

@@ -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:

+ 1 - 1
tools/clang/test/CodeGenHLSL/quick-test/incomp_array.hlsl

@@ -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];
 }