Skip to content

Commit

Permalink
Add missing newlines before function defintions.
Browse files Browse the repository at this point in the history
  • Loading branch information
Rot127 committed Nov 14, 2023
1 parent 4006f55 commit f500219
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions LLVMImporter.py
Original file line number Diff line number Diff line change
Expand Up @@ -920,9 +920,12 @@ def build_hexagon_c(self, path: Path = Conf.get_path(OutputFile.HEXAGON_C)) -> N
general_prefix = PluginInfo.GENERAL_ENUM_PREFIX
code = get_generation_warning_c_code()
code += include_file("handwritten/hexagon_c/include.c")
code += "\n"

code += self.gen_resolve_reg_enum_id_fcn()
code += "\n"
code += self.gen_get_reg_name_fcns()
code += "\n"

reg_in_cls_decl = (
f"RZ_API const char *{general_prefix.lower()}"
Expand Down

0 comments on commit f500219

Please sign in to comment.