summaryrefslogtreecommitdiff
path: root/test/CodeGen/kr-func-promote.c
blob: 8e55dc91edf4d8ff028d8e27d9982ab35ec7088b (plain)
1
2
3
4
5
6
// RUN: %clang_cc1 -triple i386-unknown-unknown %s -emit-llvm -o - | FileCheck %s
// CHECK: i32 @a(i32)

int a();
int a(x) short x; {return x;}