brintos

brintos / llvm-project-archived public Read only

0
0
Text · 187 B · 9e9d6ba Raw
9 lines · c
1// RUN: %clang_cc1 %s -emit-llvm -o - | FileCheck %s2 3union U { int x; char* p; };4void foo(void) {5  union U bar;6  // CHECK: call void asm7  __asm__ volatile("foo %0\n" :: "r"(bar));8}9