repo.or.cz
/
nasm.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Use proper bracing on setting warnings in comman line parsing
[nasm.git]
/
test
/
align13.asm
blob
4a41a779db114f0ad79e12f8a73c2db13331a8fd
1
;Testname=unoptimized; Arguments=-O0 -fbin -oalign13.bin; Files=stdout stderr align13.bin
2
;Testname=optimized; Arguments=-Ox -fbin -oalign13.bin; Files=stdout stderr align13.bin
3
4
; Test of non-power-of-2 alignment
5
6
bits
32
7
8
inc
eax
9
inc
eax
10
align
13
11
inc
eax
12
inc
eax
13
align
13
14
inc
eax
15
inc
eax
16
align
13
17
align
13
;should do nothing
18
inc
eax
19
inc
eax