[NFC][RemoveDIs] Prefer iterators over inst-pointers in InstCombine
[llvm-project.git] / llvm / test / tools / llvm-ml / align_errors.asm
blob98d935ad7685f041d6dfbd1b894c8da76bd3bcd1
1 ; RUN: not llvm-ml -filetype=s %s /Fo /dev/null 2>&1 | FileCheck %s --implicit-check-not=error:
3 .data
4 org_struct STRUCT
5 x BYTE ?
6 x_succ BYTE ?
7 ORG 15
8 y BYTE ?
9 y_succ BYTE ?
11 ; CHECK: :[[# @LINE + 1]]:7: error: expected non-negative value in struct's 'org' directive; was -4
12 ORG -4
14 z BYTE ?
15 z_succ BYTE ?
16 org_struct ENDS
18 ; CHECK: :[[# @LINE + 1]]:16: error: cannot initialize a value of type 'org_struct'; 'org' was used in the type's declaration
19 x org_struct <>
21 end