Skip to content

Commit df0ed36

Browse files
committed
format code
1 parent 274c029 commit df0ed36

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

source/slang/slang-emit-spirv.cpp

+3-2
Original file line numberDiff line numberDiff line change
@@ -7826,7 +7826,7 @@ struct SPIRVEmitContext : public SourceEmitterBase, public SPIRVEmitSharedContex
78267826
{
78277827
SpvInst* last = nullptr;
78287828

7829-
auto &idMap = m_idMaps.getOrAddValue(inst, Dictionary<UnownedStringSlice, SpvWord>());
7829+
auto& idMap = m_idMaps.getOrAddValue(inst, Dictionary<UnownedStringSlice, SpvWord>());
78307830

78317831
for (const auto spvInst : inst->getInsts())
78327832
{
@@ -8177,7 +8177,8 @@ struct SPIRVEmitContext : public SourceEmitterBase, public SPIRVEmitSharedContex
81778177
if (opcode == SpvOpVariable)
81788178
{
81798179
// SPIRV validator says,
8180-
// "All OpVariable instructions in a function must be the first instructions in the first block."
8180+
// "All OpVariable instructions in a function must be the first instructions in
8181+
// the first block."
81818182
opParent = firstLabel;
81828183

81838184
auto opStorageClass = spvInst->getOperand(3);

0 commit comments

Comments
 (0)