Skip to content

Commit 67b822c

Browse files
committed
--Updated files after the conflict resolution
1 parent 46fbefe commit 67b822c

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

llvm/lib/Target/SPIRV/SPIRVBuiltins.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3064,14 +3064,14 @@ std::optional<bool> lowerBuiltin(const StringRef DemangledCall,
30643064
return generateExtendedBitOpsInst(Call.get(), MIRBuilder, GR);
30653065
case SPIRV::BindlessINTEL:
30663066
return generateBindlessImageINTELInst(Call.get(), MIRBuilder, GR);
3067-
case SPIRV::ArbitraryPrecisionFixedPoint:
3068-
return generateAPFixedPointInst(Call.get(), MIRBuilder, GR);
30693067
case SPIRV::TernaryBitwiseINTEL:
30703068
return generateTernaryBitwiseFunctionINTELInst(Call.get(), MIRBuilder, GR);
30713069
case SPIRV::Block2DLoadStore:
30723070
return generate2DBlockIOINTELInst(Call.get(), MIRBuilder, GR);
30733071
case SPIRV::Pipe:
30743072
return generatePipeInst(Call.get(), MIRBuilder, GR);
3073+
case SPIRV::ArbitraryPrecisionFixedPoint:
3074+
return generateAPFixedPointInst(Call.get(), MIRBuilder, GR);
30753075
}
30763076
return false;
30773077
}

llvm/lib/Target/SPIRV/SPIRVInstrInfo.td

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -988,8 +988,6 @@ def OpSubgroup2DBlockStoreINTEL: Op<6235, (outs), (ins ID:$element_size, ID:$blo
988988
ID:$block_count, ID:$src_ptr, ID:$dst_base_ptr, ID:$memory_width, ID:$memory_height, ID:$memory_pitch, ID:$coord),
989989
"OpSubgroup2DBlockStoreINTEL $element_size $block_width $block_height $block_count $src_ptr $dst_base_ptr $memory_width $memory_height $memory_pitch $coord">;
990990

991-
992-
993991
//SPV_INTEL_arbitrary_precision_fixed_point
994992
def OpFixedSqrtINTEL: Op<5923, (outs ID:$res), (ins TYPE:$result_type, ID:$input, i32imm:$sign, i32imm:$l, i32imm:$rl, i32imm:$q, i32imm:$o),
995993
"$res = OpFixedSqrtINTEL $result_type $input $sign $l $rl $q $o">;

0 commit comments

Comments
 (0)