mirror of https://github.com/tinygo-org/tinygo.git
Browse Source
This increases code size on the nrf, but it is a fixed increase and can hopefully be reduced in the future. The Makefile gets a lot smaller with this which is a huge advantage (less build time complexity).pull/6/head
Ayke van Laethem
6 years ago
4 changed files with 7 additions and 40 deletions
@ -1,13 +0,0 @@ |
|||
|
|||
#pragma once |
|||
|
|||
#include <stdint.h> |
|||
|
|||
typedef struct { |
|||
uint32_t len; // TODO: size_t (or, let max string size depend on target/flag)
|
|||
uint8_t *buf; // points to string buffer itself
|
|||
} string_t; |
|||
|
|||
typedef int32_t intgo_t; // may be 64-bit
|
|||
|
|||
int main(); |
@ -1,3 +0,0 @@ |
|||
source_filename = "runtime/runtime.ll" |
|||
|
|||
; dummy file |
Loading…
Reference in new issue