summaryrefslogtreecommitdiff
path: root/test/FrontendC/2007-04-13-InlineAsmStruct2.c
blob: e4870e75be2f8bf9cfe0af7245fd5c80cf963b38 (plain)
1
2
3
4
5
6
7
8
9
// RUN: %llvmgcc %s -S -emit-llvm -o - | grep {call void asm}

struct V { short X, Y; };
int bar() {
  struct V bar;
  __asm__ volatile("foo %0\n" :: "r"(bar));
  return bar.X;
}