summaryrefslogtreecommitdiff
path: root/test/FrontendC/2007-04-11-InlineAsmStruct.c
blob: 158a16e53665acfe852b52f51b1082962a118558 (plain)
1
2
3
4
5
6
7
8
9
// RUN: %llvmgcc %s -S -emit-llvm -o - | llvm-as | llc

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