Skip to content

Commit 1e8552a

Browse files
committed
[fix not-reachable warnings]
1 parent 36b3fe0 commit 1e8552a

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

dmd/target.d

+7-7
Original file line numberDiff line numberDiff line change
@@ -841,8 +841,8 @@ else
841841
if (tvec.isIntegral() && cpu >= CPU.avx2)
842842
return true;
843843
}
844-
} // !IN_LLVM
845844
break;
845+
} // !IN_LLVM
846846

847847
case EXP.identity, EXP.notIdentity:
848848
return IN_LLVM;
@@ -889,8 +889,8 @@ else
889889
if (tvec.isIntegral() && cpu >= CPU.avx2)
890890
return true;
891891
}
892-
} // !IN_LLVM
893892
break;
893+
} // !IN_LLVM
894894

895895
case EXP.leftShift, EXP.leftShiftAssign, EXP.rightShift, EXP.rightShiftAssign, EXP.unsignedRightShift, EXP.unsignedRightShiftAssign:
896896
return IN_LLVM && tvec.isIntegral();
@@ -923,8 +923,8 @@ else
923923
if (tvec.isIntegral() && cpu >= CPU.avx2)
924924
return true;
925925
}
926-
} // !IN_LLVM
927926
break;
927+
} // !IN_LLVM
928928

929929
case EXP.mul, EXP.mulAssign:
930930
version (IN_LLVM)
@@ -960,8 +960,8 @@ else
960960
if ((elemty == TY.Tint32 || elemty == TY.Tuns32) && cpu >= CPU.avx2)
961961
return true;
962962
}
963-
} // !IN_LLVM
964963
break;
964+
} // !IN_LLVM
965965

966966
case EXP.div, EXP.divAssign:
967967
version (IN_LLVM)
@@ -985,8 +985,8 @@ else
985985
if (tvec.isFloating() && cpu >= CPU.avx)
986986
return true;
987987
}
988-
} // !IN_LLVM
989988
break;
989+
} // !IN_LLVM
990990

991991
case EXP.mod, EXP.modAssign:
992992
return IN_LLVM && tvec.isScalar();
@@ -1007,8 +1007,8 @@ else
10071007
if (vecsize == 32 && cpu >= CPU.avx2)
10081008
return true;
10091009
}
1010-
} // !IN_LLVM
10111010
break;
1011+
} // !IN_LLVM
10121012

10131013
case EXP.not:
10141014
return false;
@@ -1029,8 +1029,8 @@ else
10291029
if (vecsize == 32 && cpu >= CPU.avx2)
10301030
return true;
10311031
}
1032-
} // !IN_LLVM
10331032
break;
1033+
} // !IN_LLVM
10341034

10351035
case EXP.pow, EXP.powAssign:
10361036
return false;

0 commit comments

Comments
 (0)