Fix a couple lines that were too long, to retrigger bots.

This commit is contained in:
John Kessenich 2020-07-13 02:52:11 -06:00
parent 4e13c90944
commit 5799f5befe

View File

@ -2726,10 +2726,12 @@ Id Builder::accessChainLoad(Decoration precision, Decoration nonUniform, Id resu
// make a new function variable for this r-value, using an initializer, // make a new function variable for this r-value, using an initializer,
// and mark it as NonWritable so that downstream it can be detected as a lookup // and mark it as NonWritable so that downstream it can be detected as a lookup
// table // table
lValue = createVariable(NoPrecision, StorageClassFunction, getTypeId(accessChain.base), "indexable", accessChain.base); lValue = createVariable(NoPrecision, StorageClassFunction, getTypeId(accessChain.base),
"indexable", accessChain.base);
addDecoration(lValue, DecorationNonWritable); addDecoration(lValue, DecorationNonWritable);
} else { } else {
lValue = createVariable(NoPrecision, StorageClassFunction, getTypeId(accessChain.base), "indexable"); lValue = createVariable(NoPrecision, StorageClassFunction, getTypeId(accessChain.base),
"indexable");
// store into it // store into it
createStore(accessChain.base, lValue); createStore(accessChain.base, lValue);
} }