1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-21 20:12:56 +02:00
llvm-mirror/test/FrontendC/2008-12-23-AsmIntPointerTie.c
Chris Lattner 1e2fe309be Testcase to show we can tie together integers and pointers of
the same size.

llvm-svn: 61380
2008-12-23 18:52:26 +00:00

10 lines
167 B
C

// RUN: %llvmgcc %s -S -emit-llvm -O1 -o -
#include <stdint.h>
int test(void *b) {
intptr_t a;
__asm__ __volatile__ ("%0 %1 " : "=r" (a): "0" (b));
return a;
}