search for: hanzelpeter

Displaying 3 results from an estimated 3 matches for "hanzelpeter".

2012 Apr 25
1
[LLVMdev] LLVM Backend for Z80. ADD -> replaced -> OR
...6 to the string if your stack is 2-byte aligned. Refer to > http://llvm.org/docs/LangRef.html#datalayout . > > If it does not work, try to specify the layout in the input module using > target layout directive. > > David > > On Wed, Apr 25, 2012 at 4:57 PM, Peter Hanzel <hanzelpeter at gmail.com>wrote: > >> Hello. >> >> I am playing with LLVM and trying to make Z80 (Zilog Z80) backend. >> The source code is attached. >> >> I have succesfully made some simple test. But now I have problem with ADD >> instruction. >> The sour...
2012 Apr 25
0
[LLVMdev] LLVM Backend for Z80. ADD -> replaced -> OR
...6:8:8-i32:8:8-n8") Try to add S16 to the string if your stack is 2-byte aligned. Refer to http://llvm.org/docs/LangRef.html#datalayout . If it does not work, try to specify the layout in the input module using target layout directive. David On Wed, Apr 25, 2012 at 4:57 PM, Peter Hanzel <hanzelpeter at gmail.com> wrote: > Hello. > > I am playing with LLVM and trying to make Z80 (Zilog Z80) backend. > The source code is attached. > > I have succesfully made some simple test. But now I have problem with ADD > instruction. > The source C code is: > > typedef stru...
2012 Apr 25
2
[LLVMdev] LLVM Backend for Z80. ADD -> replaced -> OR
Hello. I am playing with LLVM and trying to make Z80 (Zilog Z80) backend. The source code is attached. I have succesfully made some simple test. But now I have problem with ADD instruction. The source C code is: typedef struct { unsigned char id1; unsigned char id2; unsigned char id3; } testS; void simple() { testS test; test.id1 = 0x40; test.id2 = 0x80; test.id3 = 0xc0; } It