llvm-6502/test/MC/COFF/align-nops.s
Michael J. Spencer cc1f91c833 Cleanup Whitespace.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@115639 91177308-0d34-0410-b5e6-96231b3b80d8
2010-10-05 17:56:37 +00:00

46 lines
1.4 KiB
ArmAsm

// RUN: llvm-mc -filetype=obj -triple i686-pc-win32 %s -o %t
// RUN: coff-dump.py %abs_tmp | FileCheck %s
// Test that we get optimal nops in text
.text
f0:
.long 0
.align 8, 0x90
.long 0
.align 8
// But not in another section
.data
.long 0
.align 8, 0x90
.long 0
.align 8
//CHECK: Name = .text
//CHECK-NEXT: VirtualSize
//CHECK-NEXT: VirtualAddress
//CHECK-NEXT: SizeOfRawData = 16
//CHECK-NEXT: PointerToRawData
//CHECK-NEXT: PointerToRelocations
//CHECK-NEXT: PointerToLineNumbers
//CHECK-NEXT: NumberOfRelocations
//CHECK-NEXT: NumberOfLineNumbers
//CHECK-NEXT: Charateristics = 0x400001
//CHECK-NEXT: IMAGE_SCN_ALIGN_8BYTES
//CHECK-NEXT: SectionData =
//CHECK-NEXT: 00 00 00 00 0F 1F 40 00 - 00 00 00 00 0F 1F 40 00
//CHECK: Name = .data
//CHECK-NEXT: VirtualSize
//CHECK-NEXT: VirtualAddress
//CHECK-NEXT: SizeOfRawData = 16
//CHECK-NEXT: PointerToRawData
//CHECK-NEXT: PointerToRelocations
//CHECK-NEXT: PointerToLineNumbers
//CHECK-NEXT: NumberOfRelocations
//CHECK-NEXT: NumberOfLineNumbers
//CHECK-NEXT: Charateristics = 0x400001
//CHECK-NEXT: IMAGE_SCN_ALIGN_8BYTES
//CHECK-NEXT: SectionData =
//CHECK-NEXT: 00 00 00 00 90 90 90 90 - 00 00 00 00 00 00 00 00