ppc64: Arguments to iselInt128Expr_to_32x4 should be initialized.
[valgrind.git] / memcheck / tests / solaris / scalar_frealpathat.c
blob7a4cd763dc0c6ea2ad4b17ca3e351249fb6142fb
1 /* Test for frealpathat syscall which is available on Solaris 11.1. */
3 #include "scalar.h"
5 int main(void)
7 /* Uninitialised, but we know px[0] is 0x0. */
8 long *px = malloc(sizeof(long));
9 x0 = px[0];
11 /* SYS_frealpathat 30 */
12 GO(SYS_frealpathat, "4s 2m");
13 SY(SYS_frealpathat, x0 - 1, x0 + 1, x0 + 2, x0 + 3); FAIL;
15 return 0;