Home | History | Annotate | Download | only in FrontendC
      1 // RUN: %llvmgcc %s -o - -S -O3 | grep {i8 signext}
      2 // PR1513
      3 
      4 struct s{
      5 long a;
      6 long b;
      7 };
      8 
      9 void f(struct s a, char *b, signed char C) {
     10 
     11 }
     12