Skip to content

Commit 7bdcba7

Browse files
committed
format
1 parent b6c823f commit 7bdcba7

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
@@ -14778,7 +14778,8 @@ Value *CodeGenFunction::EmitX86BuiltinExpr(unsigned BuiltinID,
1477814778
case X86::BI_m_prefetchw: {
1477914779
Value *Address = Ops[0];
1478014780
// The 'w' suffix implies write.
14781-
Value *RW = ConstantInt::get(Int32Ty, BuiltinID == X86::BI_m_prefetchw ? 1 : 0);
14781+
Value *RW =
14782+
ConstantInt::get(Int32Ty, BuiltinID == X86::BI_m_prefetchw ? 1 : 0);
1478214783
Value *Locality = ConstantInt::get(Int32Ty, 0x3);
1478314784
Value *Data = ConstantInt::get(Int32Ty, 1);
1478414785
Function *F = CGM.getIntrinsic(Intrinsic::prefetch, Address->getType());

0 commit comments

Comments
 (0)