xref: /aosp_15_r20/external/clang/test/CodeGen/kr-func-promote.c (revision 67e74705e28f6214e480b399dd47ea732279e315)
1 // RUN: %clang_cc1 -triple i386-unknown-unknown %s -emit-llvm -o - | FileCheck %s
2 // CHECK: i32 @a(i32)
3 
4 int a();
a(x)5 int a(x) short x; {return x;}
6 
7