blob: 0bc4f6ddfe5292a075800302b9e14a40071e8e31 [file] [log] [blame]
#include <stdio.h>
#include "opcodes.h"
/* Test that emulation warnings appear when the floating point
extension facility is not installed and the opcode specifies
a rounding mode other than 0. */
int
main(void)
{
printf("before\n");
__asm__ volatile ( CEGBRA(1,0,0,0) : : : "cc", "memory");
__asm__ volatile ( CEFBRA(3,0,0,0) : : : "cc", "memory");
__asm__ volatile ( CDGBRA(4,0,0,0) : : : "cc", "memory");
__asm__ volatile ( CEFBRA(5,0,0,0) : : : "cc", "memory");
printf("after\n");
return 0;
}