summaryrefslogtreecommitdiff
path: root/test/FrontendC/2008-12-23-AsmIntPointerTie.c
blob: 57061422b8f241c3d58d473b7ac5f295274fc58f (plain)
1
2
3
4
5
6
7
8
9
// 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;
}