Skip to content

Commit 4a4284d

Browse files
committed
Apply clang-format
1 parent af4356c commit 4a4284d

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

llvm/lib/Target/DirectX/DXILIntrinsicExpansion.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -295,10 +295,10 @@ static Value *expandIsFPClass(CallInst *Orig) {
295295
unsigned FNumElem = 0; // 0 => F is not a vector
296296

297297
unsigned BitWidth; // Bit width of F or the ElemTy of F
298-
Type *BitCastTy; // An IntNTy of the same bitwidth as F or ElemTy of F
298+
Type *BitCastTy; // An IntNTy of the same bitwidth as F or ElemTy of F
299299

300300
if (auto *FVecTy = dyn_cast<FixedVectorType>(FTy)) {
301-
Type* ElemTy = FVecTy->getElementType();
301+
Type *ElemTy = FVecTy->getElementType();
302302
FNumElem = FVecTy->getNumElements();
303303
BitWidth = ElemTy->getPrimitiveSizeInBits();
304304
BitCastTy = FixedVectorType::get(Builder.getIntNTy(BitWidth), FNumElem);

llvm/lib/Target/DirectX/DXILOpLowering.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -769,8 +769,8 @@ class OpLowerer {
769769
llvm_unreachable("Unsupported FPClassTest for DXILOpLowering");
770770
}
771771

772-
Expected<CallInst *> OpCall = OpBuilder.tryCreateOp(
773-
OpCode, Args, CI->getName(), RetTy);
772+
Expected<CallInst *> OpCall =
773+
OpBuilder.tryCreateOp(OpCode, Args, CI->getName(), RetTy);
774774
if (Error E = OpCall.takeError())
775775
return E;
776776

0 commit comments

Comments
 (0)