blob: 57061422b8f241c3d58d473b7ac5f295274fc58f [file] [log] [blame]
// RUN: %llvmgcc %s -S -O1 -o -
#include <stdint.h>
int test(void *b) {
intptr_t a;
__asm__ __volatile__ ("%0 %1 " : "=r" (a): "0" (b));
return a;
}