brintos

brintos / llvm-project-archived public Read only

0
0
Text · 159 B · 713c548 Raw
9 lines · c
1// RUN: %clang_cc1 %s -emit-llvm -o -2 3struct V { short X, Y; };4int bar(void) {5  struct V bar;6  __asm__ volatile("foo %0\n" : "=r"(bar));7  return bar.X;8}9