kit

kit
git clone https://git.ryansepassi.com/git/kit.git
Log | Files | Refs | README

arm32.h (329B)


      1 #ifndef KIT_ARCH_ARM32_H
      2 #define KIT_ARCH_ARM32_H
      3 
      4 #include "arch/native_target.h"
      5 #include "cg/native_direct_target.h"
      6 
      7 /* Backend entry points consumed by arch.c (mirrors riscv/rv64.h). */
      8 NativeTarget* arm32_native_target_new(Compiler* c, ObjBuilder* o, MCEmitter* mc);
      9 const NativeOps* arm32_native_direct_ops(void);
     10 
     11 #endif