blob: 27ae6a9b76a687cf42d960713a193122ae4aa91c [file] [log] [blame]
Eric Christopher3883e662011-07-26 22:17:02 +00001// RUN: %clang_cc1 %s -o - -emit-llvm | FileCheck %s
2// PR1513
3
4struct s{
5long a;
6long b;
7};
8
9void f(struct s a, char *b, signed char C) {
10 // CHECK: i8 signext
11
12}