Basic Inline Assembly (#149)

* basic inline assembly support

* fix rlet

* clean up detail in IR and update documentation
This commit is contained in:
water111
2020-12-04 12:57:10 -05:00
committed by GitHub
parent ea479bee98
commit 90e5c023f1
30 changed files with 761 additions and 53 deletions
+4
View File
@@ -77,4 +77,8 @@ TEST_F(VariableTests, StackVars) {
TEST_F(VariableTests, Bitfields) {
runner.run_static_test(env, testCategory, "bitfield-enums.gc", {"5\n"});
runner.run_static_test(env, testCategory, "integer-enums.gc", {"11\n"});
}
TEST_F(VariableTests, InlineAsm) {
runner.run_static_test(env, testCategory, "inline-asm.static.gc", {"1\n"});
}