-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixes to MIR JIT. JIT executes now 🎊
- Loading branch information
Showing
5 changed files
with
72 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"type": "CStatic", | ||
"count": 1, | ||
"components": { | ||
"CNamespace": { | ||
"0": "stdio" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,38 @@ | ||
|
||
#include <stdbool.h> | ||
// Struct Declarations | ||
|
||
void main() | ||
// Function Declarations | ||
|
||
// Struct Declarations | ||
typedef struct TestStruct TestStruct; | ||
|
||
// Struct Declarations | ||
typedef struct Welcome Welcome; | ||
typedef struct TestClass TestClass; | ||
|
||
// Function Declarations | ||
void Project_Main_Main(); | ||
void Project_Welcome_Print(long long in1, long long in2); | ||
|
||
// Struct Definitions | ||
struct TestStruct | ||
{}; | ||
|
||
// Struct Definitions | ||
struct Welcome | ||
{}; | ||
struct TestClass | ||
{}; | ||
|
||
// Function Definitions | ||
void Project_Main_Main() | ||
{ | ||
printf("hola"); | ||
} | ||
void Project_Welcome_Print(long long in1, long long in2) {} | ||
|
||
int main() | ||
{ | ||
bool a = true; | ||
int q = sizeof(int); | ||
int nn = 2433; | ||
printf("%i", q + nn); | ||
Project_Main_Main(); | ||
return 0; | ||
} |