mirror of
https://github.com/byteworksinc/ORCA-C.git
synced 2024-11-06 09:05:09 +00:00
1 line
237 B
C++
Executable File
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");
|
|
}
|