From 5799f5befeab745ef7cfd1b8875dd27065be2372 Mon Sep 17 00:00:00 2001 From: John Kessenich Date: Mon, 13 Jul 2020 02:52:11 -0600 Subject: [PATCH] Fix a couple lines that were too long, to retrigger bots. --- SPIRV/SpvBuilder.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/SPIRV/SpvBuilder.cpp b/SPIRV/SpvBuilder.cpp index 151e9358..582b6cb7 100644 --- a/SPIRV/SpvBuilder.cpp +++ b/SPIRV/SpvBuilder.cpp @@ -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, // and mark it as NonWritable so that downstream it can be detected as a lookup // table - lValue = createVariable(NoPrecision, StorageClassFunction, getTypeId(accessChain.base), "indexable", accessChain.base); + lValue = createVariable(NoPrecision, StorageClassFunction, getTypeId(accessChain.base), + "indexable", accessChain.base); addDecoration(lValue, DecorationNonWritable); } else { - lValue = createVariable(NoPrecision, StorageClassFunction, getTypeId(accessChain.base), "indexable"); + lValue = createVariable(NoPrecision, StorageClassFunction, getTypeId(accessChain.base), + "indexable"); // store into it createStore(accessChain.base, lValue); }