boringssl/util/fipstools/delocate/testdata/x86_64-BSS/in.s
David Benjamin 5baee45652 Use Go modules with delocate.
This makes running go test, etc., in util/fipstools/delocate work! This
adds a go_executable command to CMake like:

  go_executable(delocate boringssl.googlesource.com/boringssl/util/fipstools/delocate)

which internally gets dependencies and whatnot so it behaves like usual
Go.

Update-Note: delocate has been rearranged a bit.
Change-Id: I244a7317dd8d4f2ab77a0daa624ed3e0b385faef
Reviewed-on: https://boringssl-review.googlesource.com/31885
Commit-Queue: David Benjamin <davidben@google.com>
CQ-Verified: CQ bot account: commit-bot@chromium.org <commit-bot@chromium.org>
Reviewed-by: Adam Langley <agl@google.com>
2018-09-17 22:19:52 +00:00

34 lines
559 B
ArmAsm

.text
movq %rax, %rax
# BSS declarations emit accessors.
.comm aes_128_ctr_generic_storage,64,32
.lcomm aes_128_ctr_generic_storage2,64,32
# BSS symbols may also be emitted in .bss sections.
.section .bss,"awT",@nobits
.align 4
.globl x
.type x, @object
.size x, 4
x:
.zero 4
.Llocal:
.quad 0
.size .Llocal, 4
# .bss handling is terminated by a .text directive.
.text
.section .bss,"awT",@nobits
y:
.quad 0
# Or a .section directive.
.section .rodata
.quad 0
# Or the end of the file.
.section .bss,"awT",@nobits
z:
.quad 0