summaryrefslogtreecommitdiffstats
path: root/test/CodeGen/2007-06-18-SextAttrAggregate.c
blob: 27ae6a9b76a687cf42d960713a193122ae4aa91c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// RUN: %clang_cc1 %s -o - -emit-llvm | FileCheck %s
// PR1513

struct s{
long a;
long b;
};

void f(struct s a, char *b, signed char C) {
  // CHECK: i8 signext

}