Skip to content

Commit 5799f5b

Browse files
committed
Fix a couple lines that were too long, to retrigger bots.
1 parent 4e13c90 commit 5799f5b

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

SPIRV/SpvBuilder.cpp

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2726,10 +2726,12 @@ Id Builder::accessChainLoad(Decoration precision, Decoration nonUniform, Id resu
27262726
// make a new function variable for this r-value, using an initializer,
27272727
// and mark it as NonWritable so that downstream it can be detected as a lookup
27282728
// table
2729-
lValue = createVariable(NoPrecision, StorageClassFunction, getTypeId(accessChain.base), "indexable", accessChain.base);
2729+
lValue = createVariable(NoPrecision, StorageClassFunction, getTypeId(accessChain.base),
2730+
"indexable", accessChain.base);
27302731
addDecoration(lValue, DecorationNonWritable);
27312732
} else {
2732-
lValue = createVariable(NoPrecision, StorageClassFunction, getTypeId(accessChain.base), "indexable");
2733+
lValue = createVariable(NoPrecision, StorageClassFunction, getTypeId(accessChain.base),
2734+
"indexable");
27332735
// store into it
27342736
createStore(accessChain.base, lValue);
27352737
}

0 commit comments

Comments
 (0)