[Swift Export] KT-63516

Add a sir-compiler-bridge module that adds Kotlin and C bridges
for SIR. As SIR is still WIP, the module accepts `BridgeRequest`
instances instead of SIR elements.
This commit is contained in:
Sergey Bogolepov
2023-11-16 15:58:43 +02:00
committed by Space Team
parent 7c15e3f229
commit fe9ab0a1fc
36 changed files with 701 additions and 0 deletions
@@ -0,0 +1,7 @@
#include <stdint.h>
int32_t a(int8_t p0, int16_t p1, int32_t p2, int64_t p3);
uint32_t b(uint8_t p0, uint16_t p1, uint32_t p2, uint64_t p3);
_Bool c(_Bool p0);