Skip to content

Commit 9d43175

Browse files
committed
Fix formatting; NFC
1 parent c9a8fcf commit 9d43175

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

clang/lib/CodeGen/TargetInfo.cpp

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9003,12 +9003,8 @@ void AMDGPUTargetCodeGenInfo::setTargetAttributes(
90039003
unsigned ZDim = 0;
90049004
ASTContext &Ctx = M.getContext();
90059005
if (FlatWGS) {
9006-
Min = FlatWGS->getMin()
9007-
->EvaluateKnownConstInt(Ctx)
9008-
.getExtValue();
9009-
Max = FlatWGS->getMax()
9010-
->EvaluateKnownConstInt(Ctx)
9011-
.getExtValue();
9006+
Min = FlatWGS->getMin()->EvaluateKnownConstInt(Ctx).getExtValue();
9007+
Max = FlatWGS->getMax()->EvaluateKnownConstInt(Ctx).getExtValue();
90129008
}
90139009
if (ReqdWGS) {
90149010
XDim = ReqdWGS->getXDimVal(Ctx)->getZExtValue();

0 commit comments

Comments
 (0)