mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-25 13:24:46 +00:00
Revert part of a fix from 2010, changes since then:
a) x86-64 TLS has been documented b) the code path should use movq for the correct relocation to be generated. I've also added a fixme for the test case that we should improve the code generated, it should look something like is documented in the tls abi document. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@192631 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -969,7 +969,7 @@ def : Pat<(store (i64 (X86Wrapper tblockaddress:$src)), addr:$dst),
|
||||
// tls has some funny stuff here...
|
||||
// This corresponds to movabs $foo@tpoff, %rax
|
||||
def : Pat<(i64 (X86Wrapper tglobaltlsaddr :$dst)),
|
||||
(MOV64ri tglobaltlsaddr :$dst)>;
|
||||
(MOV64ri32 tglobaltlsaddr :$dst)>;
|
||||
// This corresponds to add $foo@tpoff, %rax
|
||||
def : Pat<(add GR64:$src1, (X86Wrapper tglobaltlsaddr :$dst)),
|
||||
(ADD64ri32 GR64:$src1, tglobaltlsaddr :$dst)>;
|
||||
|
Reference in New Issue
Block a user