Displaying 2 results from an estimated 2 matches for "movwf".
Did you mean:
movw
2009 Sep 13
2
[LLVMdev] PIC16 question
In my ongoing work on refactoring the asmprinters, I've found that
PIC16 doesn't put ':' after labels in some cases. Specifically, it
looks like basic block labels are emitted without a ':':
movwf @__floatunsidf.frame. + 2
movlp .BB1_2
goto .BB1_2
.BB1_2 ; %bb7
movlw 0
banksel @__floatunsidf.frame.
but that functions and global variables are. Does lack of a colon
mean that the label is private to the file? Is a colon on the basic...
2009 Sep 14
0
[LLVMdev] PIC16 question
Chris Lattner wrote:
> In my ongoing work on refactoring the asmprinters, I've found that
> PIC16 doesn't put ':' after labels in some cases. Specifically, it
> looks like basic block labels are emitted without a ':':
>
> movwf @__floatunsidf.frame. + 2
> movlp .BB1_2
> goto .BB1_2
> .BB1_2 ; %bb7
> movlw 0
> banksel @__floatunsidf.frame.
>
> but that functions and global variables are. Does lack of a colon
> mean that the label is private...