BR 2003451: add test case

Add test case for BR 2003451: forwardness leakage between operands.
This commit is contained in:
H. Peter Anvin 2008-07-19 21:40:07 -07:00
parent 1c3277b625
commit 289ff7e2a8

15
test/br2003451.asm Normal file
View File

@ -0,0 +1,15 @@
cpu 8086
org 0
; MOV r/m16,imm16
; (imm16 given as number)
mov word [bx], 10h
; MOV r/m16,imm16
; (imm16 given as label)
mov word [bx], label
align 10h
; This label is at address 10h
label: