@@ -54,7 +54,7 @@ class ByteCodeExprGen : public ConstStmtVisitor<ByteCodeExprGen<Emitter>, bool>,
54
54
public:
55
55
// / Initializes the compiler and the backend emitter.
56
56
template <typename ... Tys>
57
- ByteCodeExprGen (Context &Ctx, Program &P, Tys &&...Args)
57
+ ByteCodeExprGen (Context &Ctx, Program &P, Tys &&... Args)
58
58
: Emitter(Ctx, P, Args...), Ctx(Ctx), P(P) {}
59
59
60
60
// Expression visitors - result returned on interp stack.
@@ -241,7 +241,8 @@ class ByteCodeExprGen : public ConstStmtVisitor<ByteCodeExprGen<Emitter>, bool>,
241
241
llvm::function_ref<bool (PrimType)> Direct,
242
242
llvm::function_ref<bool(PrimType)> Indirect);
243
243
bool dereferenceParam (const Expr *LV, PrimType T, const ParmVarDecl *PD,
244
- DerefKind AK, llvm::function_ref<bool (PrimType)> Direct,
244
+ DerefKind AK,
245
+ llvm::function_ref<bool (PrimType)> Direct,
245
246
llvm::function_ref<bool(PrimType)> Indirect);
246
247
bool dereferenceVar (const Expr *LV, PrimType T, const VarDecl *PD,
247
248
DerefKind AK, llvm::function_ref<bool (PrimType)> Direct,
0 commit comments