Skip to content

Commit 168f935

Browse files
committed
format
1 parent fb565b8 commit 168f935

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
@@ -1691,7 +1691,7 @@ class CodeGenFunction : public CodeGenTypeCache {
16911691

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

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

0 commit comments

Comments
 (0)