From 9d2728a5605f651934fe67a6fe6986b3e4a2c011 Mon Sep 17 00:00:00 2001 From: Ash Wolf Date: Sun, 20 Nov 2022 00:07:22 -0500 Subject: add a bunch of code and a ton of stub files for later --- compiler_and_linker/unsorted/GCCInlineAsm.c | 33 +++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 compiler_and_linker/unsorted/GCCInlineAsm.c (limited to 'compiler_and_linker/unsorted/GCCInlineAsm.c') diff --git a/compiler_and_linker/unsorted/GCCInlineAsm.c b/compiler_and_linker/unsorted/GCCInlineAsm.c new file mode 100644 index 0000000..9bceb19 --- /dev/null +++ b/compiler_and_linker/unsorted/GCCInlineAsm.c @@ -0,0 +1,33 @@ +#include "compiler/GCCInlineAsm.h" + +Statement *first_ST_ASM; + +void InlineAsm_SkipComment() { +} + +static void gcc_parse_attribute() { +} + +static void gcc_parse_name() { +} + +static void gcc_parse_expression() { +} + +static void gcc_parse_input() { +} + +static void gcc_parse_output() { +} + +static void gcc_parse_killed() { +} + +static void gcc_replace_arg_st_asm() { +} + +static void gcc_replace_arg() { +} + +void InlineAsm_gcc_parse(void) { +} -- cgit v1.2.3