blob: 014470102d32f59ed215b934aab2e3fcb08e1cbd [file] [log] [blame]
Duncan Sandsbb8f5902010-11-25 21:24:35 +00001// RUN: %llvmgcc %s -S -o - | llc
Chris Lattnere6a2c4b2007-04-11 22:36:10 +00002
Chris Lattnere1d89552007-04-21 03:35:28 +00003union U { int x; float p; };
Chris Lattnere6a2c4b2007-04-11 22:36:10 +00004void foo() {
5 union U bar;
6 __asm__ volatile("foo %0\n" : "=r"(bar));
7}