Mercurial > hg > CbC > CbC_llvm
view clang/test/CodeGen/2007-04-11-InlineAsmUnion.c @ 236:c4bab56944e8 llvm-original
LLVM 16
author | kono |
---|---|
date | Wed, 09 Nov 2022 17:45:10 +0900 |
parents | 1d019706d866 |
children |
line wrap: on
line source
// RUN: %clang_cc1 %s -emit-llvm -o - union U { int x; float p; }; void foo(void) { union U bar; __asm__ volatile("foo %0\n" : "=r"(bar)); }