Home | History | Annotate | Download | only in FrontendC
      1 // RUN: %llvmgcc %s -S -O1 -o -
      2 
      3 #include <stdint.h>
      4 
      5 int test(void *b) {
      6  intptr_t a;
      7  __asm__ __volatile__ ("%0 %1 " : "=r" (a): "0" (b));
      8   return a;
      9 }
     10