Skip to content

Commit 688fe2c

Browse files
committed
format
1 parent 34b0469 commit 688fe2c

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

llvm/lib/IR/AutoUpgrade.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1522,8 +1522,7 @@ bool llvm::UpgradeIntrinsicFunction(Function *F, Function *&NewFn,
15221522
if (Intrinsic::ID id = F->getIntrinsicID()) {
15231523
// Only do this if the intrinsic signature is valid.
15241524
SmallVector<Type *> OverloadTys;
1525-
if (Intrinsic::getIntrinsicSignature(id, F->getFunctionType(),
1526-
OverloadTys))
1525+
if (Intrinsic::getIntrinsicSignature(id, F->getFunctionType(), OverloadTys))
15271526
F->setAttributes(
15281527
Intrinsic::getAttributes(F->getContext(), id, F->getFunctionType()));
15291528
}

0 commit comments

Comments
 (0)