[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / llvm / test / MC / X86 / align-branch-section-type.s
blobc2152fd77bdb7aeaaa63e9876623615dd0dae13a
1 # RUN: llvm-mc -filetype=obj -triple x86_64 --x86-align-branch-boundary=32 --x86-align-branch=ret %s | llvm-readobj -S - | FileCheck %s
3 ## Check we only pad in a text section
5 # CHECK-LABEL: Name: text
6 # CHECK: AddressAlignment: 32
7 .section text, "ax"
8 ret
10 # CHECK-LABEL: Name: excluded
11 # CHECK: AddressAlignment: 1
12 .section excluded, "e"
13 ret
15 # CHECK-LABEL: Name: tls
16 # CHECK: AddressAlignment: 1
17 .section tls, "awT"
18 ret