Home | History | Annotate | Download | only in FrontendC
      1 // RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null
      2 
      3 #include <stdio.h>
      4 
      5 union U{
      6   int i[8];
      7   char s[80];
      8 };
      9 
     10 void format_message(char *buffer, union U *u) {
     11   sprintf(buffer, u->s);
     12 }
     13 
     14