brintos

brintos / llvm-project-archived public Read only

0
0
Text · 185 B · 04b285e Raw
10 lines · c
1// RUN: %clang_cc1 %s -emit-llvm -O1 -o -2// REQUIRES: LP643 4typedef long intptr_t;5int test(void *b) {6 intptr_t a;7 __asm__ __volatile__ ("%0 %1 " : "=r" (a): "0" (b));8  return a;9}10