mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-15 04:30:12 +00:00
1c1bde666c
We had a few bugs: - We were considering the GVKind instead of just looking at the section characteristics - We would never print out 'y' when a section was meant to be unreadable - We would never print out 's' when a section was meant to be shared - We translated IMAGE_SCN_MEM_DISCARDABLE to 'n' when it should've meant IMAGE_SCN_LNK_REMOVE git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@218189 91177308-0d34-0410-b5e6-96231b3b80d8
8 lines
218 B
ArmAsm
8 lines
218 B
ArmAsm
// RUN: llvm-mc -triple i386-pc-win32 < %s | FileCheck %s
|
|
.section .klaatu,"wn"
|
|
// CHECK: .section .klaatu,"wn"
|
|
.section .barada,"y"
|
|
// CHECK: .section .barada,"y"
|
|
.section .nikto,"wds"
|
|
// CHECK: .section .nikto,"wds"
|