Skip to content

Commit

Permalink
Format.
Browse files Browse the repository at this point in the history
  • Loading branch information
elliottslaughter committed Aug 25, 2023
1 parent f780d98 commit 2c45df5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/tcompiler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2350,9 +2350,9 @@ struct FunctionEmitter {
bool isPointerToFunction(Type *t) {
return t->isPointerTy()
#if LLVM_VERSION < 160
&& t->getPointerElementType()->isFunctionTy()
&& t->getPointerElementType()->isFunctionTy()
#endif
;
;
}
Value *emitStructSelect(Obj *structType, Value *structPtr, int index,
Obj *entryType) {
Expand Down

0 comments on commit 2c45df5

Please sign in to comment.