blob: 83fe7db771f5f94c22c4185c31c5fc74d6afd016 [file] [log] [blame]
Dan Gohman8a3f6442009-12-05 00:02:37 +00001// RUN: %llvmgcc %s -S -emit-llvm -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}