summaryrefslogtreecommitdiffstats
path: root/test/CodeGen/2008-12-23-AsmIntPointerTie.c
blob: df646b7801f7443b03bb696852ee328d0cde38b0 (plain)
1
2
3
4
5
6
7
8
// RUN: %clang_cc1 %s -emit-llvm -O1 -o -

typedef long intptr_t;
int test(void *b) {
 intptr_t a;
 __asm__ __volatile__ ("%0 %1 " : "=r" (a): "0" (b));
  return a;
}