mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
d9617dc535
.align directive refuses alignment 0 -- a comment in the code hints this is done for GNU as compatibility, but it seems GNU as accepts .align 0 (and silently rounds up alignment to 1). Differential Revision: http://reviews.llvm.org/D12682 llvm-svn: 247048
5 lines
125 B
ArmAsm
5 lines
125 B
ArmAsm
// Test that an alignment of zero is accepted.
|
|
// RUN: llvm-mc -filetype=obj -triple x86_64-pc-linux-gnu %s -o -
|
|
|
|
.align 0
|