Skip to content

Commit 7edbef5

Browse files
committed
Apply clang-format
1 parent 609a82a commit 7edbef5

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

llvm/lib/Target/DirectX/DXILShaderFlags.cpp

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,11 +100,13 @@ void ModuleShaderFlags::updateFunctionFlags(ComputedShaderFlags &CSF,
100100
}
101101

102102
if (!CSF.Int64Ops)
103-
CSF.Int64Ops = I.getType()->isIntegerTy() && I.getType()->getScalarSizeInBits() == 64;
103+
CSF.Int64Ops =
104+
I.getType()->isIntegerTy() && I.getType()->getScalarSizeInBits() == 64;
104105

105106
if (!CSF.Int64Ops) {
106107
for (const Value *Op : I.operands()) {
107-
if (Op->getType()->isIntegerTy() && Op->getType()->getScalarSizeInBits() == 64) {
108+
if (Op->getType()->isIntegerTy() &&
109+
Op->getType()->getScalarSizeInBits() == 64) {
108110
CSF.Int64Ops = true;
109111
break;
110112
}

0 commit comments

Comments
 (0)