Displaying 3 results from an estimated 3 matches for "simple4".
Did you mean:
simple
2012 Apr 25
2
[LLVMdev] LLVM Backend for Z80. ADD -> replaced -> OR
...1, align 1
%id2 = getelementptr inbounds %struct.testS* %test, i32 0, i32 1
store i8 -128, i8* %id2, align 1
%id3 = getelementptr inbounds %struct.testS* %test, i32 0, i32 2
store i8 -64, i8* %id3, align 1
ret void
}
And with llc -filetype=asm -march=z80 a get this .s file:
.file "simple4.bc"
.text
.globl simple
.type simple, at function
simple: # @simple
# BB#0: # %entry
ld HL, 8
add HL,SP <--- problem line
ld DE, 1
ld BC, 2
ld (SP+6), BC
ld B, H
ld C, L
or BC, DE
ld (SP+4), B...
2012 Apr 25
0
[LLVMdev] LLVM Backend for Z80. ADD -> replaced -> OR
...unds %struct.testS* %test, i32 0, i32 1
> store i8 -128, i8* %id2, align 1
> %id3 = getelementptr inbounds %struct.testS* %test, i32 0, i32 2
> store i8 -64, i8* %id3, align 1
> ret void
> }
>
> And with llc -filetype=asm -march=z80 a get this .s file:
>
> .file "simple4.bc"
> .text
> .globl simple
> .type simple, at function
> simple: # @simple
> # BB#0: # %entry
> ld HL, 8
> add HL,SP <--- problem line
> ld DE, 1
> ld BC, 2
> ld (SP+6), BC...
2012 Apr 25
1
[LLVMdev] LLVM Backend for Z80. ADD -> replaced -> OR
...2 1
>> store i8 -128, i8* %id2, align 1
>> %id3 = getelementptr inbounds %struct.testS* %test, i32 0, i32 2
>> store i8 -64, i8* %id3, align 1
>> ret void
>> }
>>
>> And with llc -filetype=asm -march=z80 a get this .s file:
>>
>> .file "simple4.bc"
>> .text
>> .globl simple
>> .type simple, at function
>> simple: # @simple
>> # BB#0: # %entry
>> ld HL, 8
>> add HL,SP <--- problem line
>> ld DE, 1
&...