Skip to content

Commit c3bb38d

Browse files
Apply formatting
1 parent 19a8c57 commit c3bb38d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

clang/lib/AST/ByteCode/InterpBuiltin.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4587,7 +4587,8 @@ bool InterpretBuiltin(InterpState &S, CodePtr OpPC, const CallExpr *Call,
45874587
// Generic kunpack: extract lower half of each operand and concatenate
45884588
// Result = A[HalfWidth-1:0] concat B[HalfWidth-1:0]
45894589
unsigned BW = A.getBitWidth();
4590-
return APSInt(A.trunc(BW / 2).concat(B.trunc(BW / 2)), A.isUnsigned());
4590+
return APSInt(A.trunc(BW / 2).concat(B.trunc(BW / 2)),
4591+
A.isUnsigned());
45914592
});
45924593

45934594
case X86::BI__builtin_ia32_phminposuw128:

0 commit comments

Comments
 (0)