1// RUN: %clang_cc1 -triple i386-unknown-unknown %s -emit-llvm -o - | grep "i32 @a(i32)"
2
3int a();
4int a(x) short x; {return x;}
5
6