Skip to content

Commit 814e728

Browse files
authored
Merge pull request KhronosGroup#251 from MrSidims/private/MrSidims/FunctionPointerINTEL
Rename ConstFunctionPointerINTEL to ConstantFunctionPointerINTEL
2 parents b8bc8ca + 1639e91 commit 814e728

File tree

9 files changed

+12
-12
lines changed

9 files changed

+12
-12
lines changed

include/spirv/unified1/spirv.core.grammar.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5338,7 +5338,7 @@
53385338
"version" : "None"
53395339
},
53405340
{
5341-
"opname" : "OpConstFunctionPointerINTEL",
5341+
"opname" : "OpConstantFunctionPointerINTEL",
53425342
"class" : "@exclude",
53435343
"opcode" : 5600,
53445344
"operands" : [

include/spirv/unified1/spirv.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1606,7 +1606,7 @@ public enum Op
16061606
OpUSubSatINTEL = 5596,
16071607
OpIMul32x16INTEL = 5597,
16081608
OpUMul32x16INTEL = 5598,
1609-
OpConstFunctionPointerINTEL = 5600,
1609+
OpConstantFunctionPointerINTEL = 5600,
16101610
OpFunctionPointerCallINTEL = 5601,
16111611
OpAsmTargetINTEL = 5609,
16121612
OpAsmINTEL = 5610,

include/spirv/unified1/spirv.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1604,7 +1604,7 @@ typedef enum SpvOp_ {
16041604
SpvOpUSubSatINTEL = 5596,
16051605
SpvOpIMul32x16INTEL = 5597,
16061606
SpvOpUMul32x16INTEL = 5598,
1607-
SpvOpConstFunctionPointerINTEL = 5600,
1607+
SpvOpConstantFunctionPointerINTEL = 5600,
16081608
SpvOpFunctionPointerCallINTEL = 5601,
16091609
SpvOpAsmTargetINTEL = 5609,
16101610
SpvOpAsmINTEL = 5610,
@@ -2257,7 +2257,7 @@ inline void SpvHasResultAndType(SpvOp opcode, bool *hasResult, bool *hasResultTy
22572257
case SpvOpUSubSatINTEL: *hasResult = true; *hasResultType = true; break;
22582258
case SpvOpIMul32x16INTEL: *hasResult = true; *hasResultType = true; break;
22592259
case SpvOpUMul32x16INTEL: *hasResult = true; *hasResultType = true; break;
2260-
case SpvOpConstFunctionPointerINTEL: *hasResult = true; *hasResultType = true; break;
2260+
case SpvOpConstantFunctionPointerINTEL: *hasResult = true; *hasResultType = true; break;
22612261
case SpvOpFunctionPointerCallINTEL: *hasResult = true; *hasResultType = true; break;
22622262
case SpvOpAsmTargetINTEL: *hasResult = true; *hasResultType = true; break;
22632263
case SpvOpAsmINTEL: *hasResult = true; *hasResultType = true; break;

include/spirv/unified1/spirv.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1600,7 +1600,7 @@ enum Op {
16001600
OpUSubSatINTEL = 5596,
16011601
OpIMul32x16INTEL = 5597,
16021602
OpUMul32x16INTEL = 5598,
1603-
OpConstFunctionPointerINTEL = 5600,
1603+
OpConstantFunctionPointerINTEL = 5600,
16041604
OpFunctionPointerCallINTEL = 5601,
16051605
OpAsmTargetINTEL = 5609,
16061606
OpAsmINTEL = 5610,
@@ -2253,7 +2253,7 @@ inline void HasResultAndType(Op opcode, bool *hasResult, bool *hasResultType) {
22532253
case OpUSubSatINTEL: *hasResult = true; *hasResultType = true; break;
22542254
case OpIMul32x16INTEL: *hasResult = true; *hasResultType = true; break;
22552255
case OpUMul32x16INTEL: *hasResult = true; *hasResultType = true; break;
2256-
case OpConstFunctionPointerINTEL: *hasResult = true; *hasResultType = true; break;
2256+
case OpConstantFunctionPointerINTEL: *hasResult = true; *hasResultType = true; break;
22572257
case OpFunctionPointerCallINTEL: *hasResult = true; *hasResultType = true; break;
22582258
case OpAsmTargetINTEL: *hasResult = true; *hasResultType = true; break;
22592259
case OpAsmINTEL: *hasResult = true; *hasResultType = true; break;

include/spirv/unified1/spirv.hpp11

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1600,7 +1600,7 @@ enum class Op : unsigned {
16001600
OpUSubSatINTEL = 5596,
16011601
OpIMul32x16INTEL = 5597,
16021602
OpUMul32x16INTEL = 5598,
1603-
OpConstFunctionPointerINTEL = 5600,
1603+
OpConstantFunctionPointerINTEL = 5600,
16041604
OpFunctionPointerCallINTEL = 5601,
16051605
OpAsmTargetINTEL = 5609,
16061606
OpAsmINTEL = 5610,
@@ -2253,7 +2253,7 @@ inline void HasResultAndType(Op opcode, bool *hasResult, bool *hasResultType) {
22532253
case Op::OpUSubSatINTEL: *hasResult = true; *hasResultType = true; break;
22542254
case Op::OpIMul32x16INTEL: *hasResult = true; *hasResultType = true; break;
22552255
case Op::OpUMul32x16INTEL: *hasResult = true; *hasResultType = true; break;
2256-
case Op::OpConstFunctionPointerINTEL: *hasResult = true; *hasResultType = true; break;
2256+
case Op::OpConstantFunctionPointerINTEL: *hasResult = true; *hasResultType = true; break;
22572257
case Op::OpFunctionPointerCallINTEL: *hasResult = true; *hasResultType = true; break;
22582258
case Op::OpAsmTargetINTEL: *hasResult = true; *hasResultType = true; break;
22592259
case Op::OpAsmINTEL: *hasResult = true; *hasResultType = true; break;

include/spirv/unified1/spirv.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1596,7 +1596,7 @@
15961596
"OpUSubSatINTEL": 5596,
15971597
"OpIMul32x16INTEL": 5597,
15981598
"OpUMul32x16INTEL": 5598,
1599-
"OpConstFunctionPointerINTEL": 5600,
1599+
"OpConstantFunctionPointerINTEL": 5600,
16001600
"OpFunctionPointerCallINTEL": 5601,
16011601
"OpAsmTargetINTEL": 5609,
16021602
"OpAsmINTEL": 5610,

include/spirv/unified1/spirv.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1551,7 +1551,7 @@ spv = {
15511551
OpUSubSatINTEL = 5596,
15521552
OpIMul32x16INTEL = 5597,
15531553
OpUMul32x16INTEL = 5598,
1554-
OpConstFunctionPointerINTEL = 5600,
1554+
OpConstantFunctionPointerINTEL = 5600,
15551555
OpFunctionPointerCallINTEL = 5601,
15561556
OpAsmTargetINTEL = 5609,
15571557
OpAsmINTEL = 5610,

include/spirv/unified1/spirv.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1551,7 +1551,7 @@
15511551
'OpUSubSatINTEL' : 5596,
15521552
'OpIMul32x16INTEL' : 5597,
15531553
'OpUMul32x16INTEL' : 5598,
1554-
'OpConstFunctionPointerINTEL' : 5600,
1554+
'OpConstantFunctionPointerINTEL' : 5600,
15551555
'OpFunctionPointerCallINTEL' : 5601,
15561556
'OpAsmTargetINTEL' : 5609,
15571557
'OpAsmINTEL' : 5610,

include/spirv/unified1/spv.d

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1609,7 +1609,7 @@ enum Op : uint
16091609
OpUSubSatINTEL = 5596,
16101610
OpIMul32x16INTEL = 5597,
16111611
OpUMul32x16INTEL = 5598,
1612-
OpConstFunctionPointerINTEL = 5600,
1612+
OpConstantFunctionPointerINTEL = 5600,
16131613
OpFunctionPointerCallINTEL = 5601,
16141614
OpAsmTargetINTEL = 5609,
16151615
OpAsmINTEL = 5610,

0 commit comments

Comments
 (0)