Implement asm! codegen

This commit is contained in:
Amanieu d'Antras 2020-02-17 21:36:01 +00:00
parent 342a64caef
commit abed45ff9f
8 changed files with 608 additions and 17 deletions

View file

@ -82,6 +82,8 @@ enum LLVMRustAttribute {
NonLazyBind = 23,
OptimizeNone = 24,
ReturnsTwice = 25,
ReadNone = 26,
InaccessibleMemOnly = 27,
};
typedef struct OpaqueRustString *RustStringRef;