Skip to content

Commit 80e6138

Browse files
committed
format
1 parent e5f485a commit 80e6138

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

clang/lib/CodeGen/CGBuiltin.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15258,7 +15258,8 @@ Value *CodeGenFunction::EmitX86BuiltinExpr(unsigned BuiltinID,
1525815258
case X86::BI_m_prefetchw: {
1525915259
Value *Address = Ops[0];
1526015260
// The 'w' suffix implies write.
15261-
Value *RW = ConstantInt::get(Int32Ty, BuiltinID == X86::BI_m_prefetchw ? 1 : 0);
15261+
Value *RW =
15262+
ConstantInt::get(Int32Ty, BuiltinID == X86::BI_m_prefetchw ? 1 : 0);
1526215263
Value *Locality = ConstantInt::get(Int32Ty, 0x3);
1526315264
Value *Data = ConstantInt::get(Int32Ty, 1);
1526415265
Function *F = CGM.getIntrinsic(Intrinsic::prefetch, Address->getType());

0 commit comments

Comments
 (0)