Skip to content

Commit 3d77d82

Browse files
DianaChenigcbot
authored andcommitted
Minor indent fix
Minor indent fix
1 parent e13560f commit 3d77d82

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

IGC/Compiler/CISACodeGen/CISABuilder.cpp

+6-3
Original file line numberDiff line numberDiff line change
@@ -8778,14 +8778,15 @@ namespace IGC
87788778
}
87798779

87808780
// 1st D32-V4 or D64-V2
8781+
bool ov = false;
87818782
V(vKernel->AppendVISALscUntypedLoad(
87828783
subOp,
87838784
lscSfid,
87848785
predOpnd,
87858786
visaExecSize(mode),
87868787
GetAluEMask(offset),
87878788
cacheOpts,
8788-
false,
8789+
ov,
87898790
addr,
87908791
dataShape,
87918792
globalOffsetOpnd,
@@ -8801,7 +8802,7 @@ namespace IGC
88018802
visaExecSize(mode),
88028803
GetAluEMask(offset),
88038804
cacheOpts,
8804-
false,
8805+
ov,
88058806
addr2,
88068807
dataShape2,
88078808
globalOffsetOpnd2,
@@ -8813,14 +8814,15 @@ namespace IGC
88138814
}
88148815

88158816
unsigned surfaceIndex = 0x0;
8817+
bool ov = false;
88168818
V(vKernel->AppendVISALscUntypedLoad(
88178819
subOp,
88188820
lscSfid,
88198821
predOpnd,
88208822
visaExecSize(mode),
88218823
GetAluEMask(offset),
88228824
cacheOpts,
8823-
false,
8825+
ov,
88248826
addr,
88258827
dataShape,
88268828
globalOffsetOpnd,
@@ -9009,6 +9011,7 @@ namespace IGC
90099011
auto execSize = visaExecSize(m_encoderState.m_simdSize);
90109012
auto execOff = ConvertMaskToVisaType(m_encoderState.m_mask, false);
90119013

9014+
bool ov = false;
90129015
V(vKernel->AppendVISALscUntypedLoad(
90139016
LSC_LOAD_STRIDED,
90149017
lscSfid,

IGC/Compiler/CISACodeGen/CISABuilder.hpp

-1
Original file line numberDiff line numberDiff line change
@@ -742,7 +742,6 @@ namespace IGC
742742
void SetBuilderOptions(VISABuilder* pbuilder);
743743

744744
unsigned int GetSpillThreshold(SIMDMode simdmode);
745-
746745
private:
747746
// helper functions for compile flow
748747
/// shaderOverrideVISAFirstPass - pre-process shader overide dir for visa shader override.

0 commit comments

Comments
 (0)