Skip to content

Commit 91f6962

Browse files
committed
Fixed using the old name after renaming the type
1 parent c7ead3e commit 91f6962

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

llvm/lib/Target/DirectX/DXIL.td

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -357,7 +357,7 @@ class DXILOp<int opcode, DXILOpClass opclass> {
357357
DXILOpClass OpClass = opclass;
358358

359359
// LLVM Intrinsics DXIL Operation maps from
360-
list<IntrinWithArgs> intrinsic_selects = [];
360+
list<IntrinSelect> intrinsic_selects = [];
361361

362362
// Result type of the op
363363
DXILOpParamType result;
@@ -968,7 +968,7 @@ def WaveAllBitCount : DXILOp<135, waveAllOp> {
968968
def Barrier : DXILOp<80, barrier> {
969969
let Doc = "inserts a memory barrier in the shader";
970970
let intrinsic_selects = [
971-
IntrinWithArgs<
971+
IntrinSelect<
972972
int_dx_group_memory_barrier_with_group_sync,
973973
[ IntrinArgI32<BarrierMode_GroupMemoryBarrierWithGroupSync> ]>,
974974
];

0 commit comments

Comments
 (0)