1
0
mirror of https://github.com/c64scene-ar/llvm-6502.git synced 2024-12-14 11:32:34 +00:00
llvm-6502/test/FrontendC/2007-04-11-InlineAsmStruct.c
2009-12-05 00:02:37 +00:00

10 lines
163 B
C

// RUN: %llvmgcc %s -S -emit-llvm -o - | llc
struct V { short X, Y; };
int bar() {
struct V bar;
__asm__ volatile("foo %0\n" : "=r"(bar));
return bar.X;
}