You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: lib/Backend/GlobOpt.cpp
+18-19Lines changed: 18 additions & 19 deletions
Original file line number
Diff line number
Diff line change
@@ -3530,7 +3530,7 @@ GlobOpt::OptSrc(IR::Opnd *opnd, IR::Instr * *pInstr, Value **indirIndexValRef, I
3530
3530
ValueType valueType(val->GetValueInfo()->Type());
3531
3531
3532
3532
// This block uses local profiling data to optimize the case of a native array being passed to a function that fills it with other types. When the function is inlined
3533
-
// into different call paths which use different types this can cause a perf hit by performing unnecessary array conversions, so only perform this optimization when
3533
+
// into different call paths which use different types this can cause a perf hit by performing unnecessary array conversions, so only perform this optimization when
3534
3534
// the function is not inlined.
3535
3535
if (valueType.IsLikelyNativeArray() && !valueType.IsObject() && instr->IsProfiledInstr() && !instr->m_func->IsInlined())
3536
3536
{
@@ -5452,7 +5452,7 @@ GlobOpt::ValueNumberLdElemDst(IR::Instr **pInstr, Value *srcVal)
5452
5452
case ObjectType::Float64MixedArray:
5453
5453
Float64Array:
5454
5454
Assert(dst->IsRegOpnd());
5455
-
5455
+
5456
5456
// If float type spec is disabled, don't load float64 values
5457
5457
if (!this->DoFloatTypeSpec())
5458
5458
{
@@ -7550,7 +7550,7 @@ GlobOpt::TypeSpecializeInlineBuiltInBinary(IR::Instr **pInstr, Value *src1Val, V
7550
7550
{
7551
7551
// Compute resulting range info
7552
7552
int32 min1 = INT32_MIN;
7553
-
int32 max1 = INT32_MAX;
7553
+
int32 max1 = INT32_MAX;
7554
7554
int32 min2 = INT32_MIN;
7555
7555
int32 max2 = INT32_MAX;
7556
7556
int32 newMin, newMax;
@@ -12273,7 +12273,7 @@ static void SetIsConstFlag(StackSym* dstSym, int value)
0 commit comments