• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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