ORCA-C/Tests/Deviance/D25.0.2.CC
2017-10-01 17:47:47 -06:00

1 line
237 B
C++
Executable File

/* Deviance Test 25.0.2: Ensure branching to label + expression is detected */
#include <stdio.h>
main ()
{
asm
{
bra Lbl1 + 0x8
Lbl1: nop
}
printf ("Failed Deviance Test 25.0.2\n");
}