Skip to content

Commit abd8cb2

Browse files
committed
format
1 parent e013868 commit abd8cb2

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

clang/lib/CodeGen/CodeGenFunction.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,7 @@ CodeGenFunction::CodeGenFunction(CodeGenModule &cgm, llvm::Function *Inner,
8080
InnerFn = Inner;
8181
assert(InnerFn && "The inner function provided should not be null");
8282
}
83+
8384
CodeGenFunction::CodeGenFunction(CodeGenModule &cgm, bool suppressNewContext)
8485
: CodeGenTypeCache(cgm), CGM(cgm), Target(cgm.getTarget()),
8586
Builder(cgm, cgm.getModule().getContext(), llvm::ConstantFolder(),

clang/lib/CodeGen/CodeGenFunction.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1649,7 +1649,7 @@ class CodeGenFunction : public CodeGenTypeCache {
16491649

16501650
/// If `InnerFn` is set, this CGF generates a thunk function that does the nil
16511651
/// check before calling `InnerFn`. `InnerFn` has to be an objc_direct method.
1652-
llvm::Function* InnerFn = nullptr;
1652+
llvm::Function *InnerFn = nullptr;
16531653

16541654
/// Increment the profiler's counter for the given statement by \p StepV.
16551655
/// If \p StepV is null, the default increment is 1.

0 commit comments

Comments
 (0)