Displaying 1 result from an estimated 1 matches for "_camlexample__code_end".
2007 Aug 12
0
[LLVMdev] ocaml+llvm
....globl _camlExample__data_begin
_camlExample__data_begin:
.text
.globl _camlExample__code_begin
_camlExample__code_begin:
.data
; data follows
.text
; code follows
epilogue from example.s:
.text
.globl _camlExample__code_end
_camlExample__code_end:
.data
.globl _camlExample__data_end
_camlExample__data_end:
.long 0
I think I should simply write prologue- and epilogue emitter
passes for this boilerplate. That avoids attempting to model these
quirky symbols in the LLVM IR, but again...