Skip to content

Commit 96c5292

Browse files
committed
Fix indentation
1 parent 654756b commit 96c5292

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

clang/lib/CodeGen/CGBuiltin.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17461,8 +17461,8 @@ Value *CodeGenFunction::EmitPPCBuiltinExpr(unsigned BuiltinID,
1746117461
SmallVector<Value *, 4> Ops;
1746217462
for (unsigned i = 0, e = E->getNumArgs(); i != e; i++)
1746317463
if (E->getArg(i)->getType()->isArrayType())
17464-
Ops.push_back(
17465-
EmitArrayToPointerDecay(E->getArg(i)).getRawPointer(*this));
17464+
Ops.push_back(
17465+
EmitArrayToPointerDecay(E->getArg(i)).getRawPointer(*this));
1746617466
else
1746717467
Ops.push_back(EmitScalarExpr(E->getArg(i)));
1746817468
// The first argument of these two builtins is a pointer used to store their

0 commit comments

Comments
 (0)