Skip to content

Commit c932a0e

Browse files
committed
[Driver,DXIL] Fix build
1 parent 8266d47 commit c932a0e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

llvm/lib/Target/DirectX/DXIL.td

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -333,9 +333,9 @@ def Abs : DXILOp<6, unary> {
333333
def Saturate : DXILOp<7, unary> {
334334
let Doc = "Clamps a single or double precision floating point value to [0.0f...1.0f].";
335335
let LLVMIntrinsic = int_dx_saturate;
336-
let arguments = [overloadTy];
337-
let result = overloadTy;
338-
let overloads = [Overloads<DXIL1_0, [halfTy, floatTy, doubleTy]>];
336+
let arguments = [OverloadTy];
337+
let result = OverloadTy;
338+
let overloads = [Overloads<DXIL1_0, [HalfTy, FloatTy, DoubleTy]>];
339339
let stages = [Stages<DXIL1_0, [all_stages]>];
340340
let attributes = [Attributes<DXIL1_0, [ReadNone]>];
341341
}

0 commit comments

Comments
 (0)