| 123456789 |
- // RUN: %dxc -E main -T ps_6_0 -fcgl %s | FileCheck %s
- // CHECK: main
- // After lowering, these would turn into multiple abs calls rather than a 4 x float
- // CHECK: call <4 x float> @"dx.hl.op..<4 x float> (i32, <4 x float>)"(i32 62,
- float4 main(float4 a : A, uint4 b : A1) : SV_TARGET {
- return abs(a*b.yxxx);
- }
|