forked from OSchip/llvm-project
[AArch64, COFF] Interpret .align as power of two for COFF as well
Differential Revision: https://reviews.llvm.org/D35545 llvm-svn: 308517
This commit is contained in:
parent
e018bbd835
commit
2ff5f5d681
|
@ -105,4 +105,5 @@ AArch64MCAsmInfoCOFF::AArch64MCAsmInfoCOFF() {
|
|||
CommentString = ";";
|
||||
PrivateGlobalPrefix = ".L";
|
||||
PrivateLabelPrefix = ".L";
|
||||
AlignmentIsInBytes = false;
|
||||
}
|
||||
|
|
|
@ -0,0 +1,7 @@
|
|||
// RUN: llvm-mc -filetype=obj -triple aarch64-windows-gnu %s | llvm-readobj -s -sd | FileCheck %s
|
||||
.text
|
||||
.align 5
|
||||
f0:
|
||||
ret
|
||||
|
||||
// CHECK: IMAGE_SCN_ALIGN_32BYTES
|
Loading…
Reference in New Issue