Mercurial > hg > CbC > CbC_llvm
view clang/test/CodeGen/2007-04-11-InlineAsmStruct.c @ 150:1d019706d866
LLVM10
author | anatofuz |
---|---|
date | Thu, 13 Feb 2020 15:10:13 +0900 (2020-02-13) |
parents | |
children | c4bab56944e8 |
line wrap: on
line source
// RUN: %clang_cc1 %s -emit-llvm -o - struct V { short X, Y; }; int bar() { struct V bar; __asm__ volatile("foo %0\n" : "=r"(bar)); return bar.X; }