Skip to content

Commit ab7da5f

Browse files
ahatanakahatanaka
authored andcommitted
Fix indentation
1 parent d4cb557 commit ab7da5f

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
@@ -17137,8 +17137,8 @@ Value *CodeGenFunction::EmitPPCBuiltinExpr(unsigned BuiltinID,
1713717137
SmallVector<Value *, 4> Ops;
1713817138
for (unsigned i = 0, e = E->getNumArgs(); i != e; i++)
1713917139
if (E->getArg(i)->getType()->isArrayType())
17140-
Ops.push_back(
17141-
EmitArrayToPointerDecay(E->getArg(i)).getRawPointer(*this));
17140+
Ops.push_back(
17141+
EmitArrayToPointerDecay(E->getArg(i)).getRawPointer(*this));
1714217142
else
1714317143
Ops.push_back(EmitScalarExpr(E->getArg(i)));
1714417144
// The first argument of these two builtins is a pointer used to store their

0 commit comments

Comments
 (0)