| Eric Christopher | 3883e66 | 2011-07-26 22:17:02 +0000 | [diff] [blame] | 1 | // RUN: %clang_cc1 %s -o - -emit-llvm | FileCheck %s |
| 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 | // CHECK: i8 signext | ||||
| 11 | |||||
| 12 | } | ||||