diff options
author | Dimitry Andric <dim@FreeBSD.org> | 2017-05-16 19:47:41 +0000 |
---|---|---|
committer | Dimitry Andric <dim@FreeBSD.org> | 2017-05-16 19:47:41 +0000 |
commit | 022ebf5bbf58ca2dd943d3376cc95a6b206db799 (patch) | |
tree | 4069ef3b75eed2d68683cb6224a627c24cd95b15 /test/ELF/Inputs | |
parent | fbe69f787ace06f44b6cb1bd3cd45ac703a16a05 (diff) |
Notes
Diffstat (limited to 'test/ELF/Inputs')
-rw-r--r-- | test/ELF/Inputs/i386-static-tls-model1.s | 10 | ||||
-rw-r--r-- | test/ELF/Inputs/i386-static-tls-model2.s | 9 | ||||
-rw-r--r-- | test/ELF/Inputs/i386-static-tls-model3.s | 9 | ||||
-rw-r--r-- | test/ELF/Inputs/i386-static-tls-model4.s | 9 |
4 files changed, 0 insertions, 37 deletions
diff --git a/test/ELF/Inputs/i386-static-tls-model1.s b/test/ELF/Inputs/i386-static-tls-model1.s deleted file mode 100644 index e7e584c1fcf19..0000000000000 --- a/test/ELF/Inputs/i386-static-tls-model1.s +++ /dev/null @@ -1,10 +0,0 @@ -.section ".tdata", "awT", @progbits -.globl var -var: - -.section .foo, "aw" -.global _start -_start: - movl $var@tpoff, %edx # R_386_TLS_LE_32 - movl %gs:0, %ecx - subl %edx, %eax diff --git a/test/ELF/Inputs/i386-static-tls-model2.s b/test/ELF/Inputs/i386-static-tls-model2.s deleted file mode 100644 index b28a1458742d0..0000000000000 --- a/test/ELF/Inputs/i386-static-tls-model2.s +++ /dev/null @@ -1,9 +0,0 @@ -.section ".tdata", "awT", @progbits -.globl var -var: - -.section .foo, "aw" -.global _start -_start: - movl %gs:0, %eax - addl var@gotntpoff(%ebx),%eax # R_386_TLS_GOTIE diff --git a/test/ELF/Inputs/i386-static-tls-model3.s b/test/ELF/Inputs/i386-static-tls-model3.s deleted file mode 100644 index f92267ecbdd07..0000000000000 --- a/test/ELF/Inputs/i386-static-tls-model3.s +++ /dev/null @@ -1,9 +0,0 @@ -.section ".tdata", "awT", @progbits -.globl var -var: - -.section .foo, "aw" -.global _start -_start: - movl %gs:0, %eax - addl var@indntpoff, %eax #R_386_TLS_IE diff --git a/test/ELF/Inputs/i386-static-tls-model4.s b/test/ELF/Inputs/i386-static-tls-model4.s deleted file mode 100644 index ffb20def4fab9..0000000000000 --- a/test/ELF/Inputs/i386-static-tls-model4.s +++ /dev/null @@ -1,9 +0,0 @@ -.section ".tdata", "awT", @progbits -.globl var -var: - -.section .foo, "aw" -.global _start -_start: - movl %gs:0, %eax - leal var@ntpoff(%eax), %eax #R_386_TLS_LE |