From 2c45df5d161ece85b2bd09dfd67db616936a1271 Mon Sep 17 00:00:00 2001 From: Elliott Slaughter Date: Fri, 25 Aug 2023 11:33:50 -0700 Subject: [PATCH] Format. --- src/tcompiler.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/tcompiler.cpp b/src/tcompiler.cpp index 03e269d4..3839950a 100644 --- a/src/tcompiler.cpp +++ b/src/tcompiler.cpp @@ -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) {