blob: 2fcd72607a2a6c96e7d376949271f767fcace11d [file] [log] [blame]
Reid Spencerf234bed2007-07-19 23:13:04 +00001// RUN: %llvmgcc %s -o - -S -emit-llvm -O3 | grep {i8 signext}
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002// PR1513
3
4struct s{
5long a;
6long b;
7};
8
Nick Lewycky31645e52007-07-28 16:43:10 +00009void f(struct s a, char *b, signed char C) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +000010
11}