Home | History | Annotate | Download | only in CodeGen
      1 // RUN: %clang_cc1 -triple i386-unknown-unknown %s -emit-llvm -o - | FileCheck %s
      2 // CHECK: i32 @a(i32)
      3 
      4 int a();
      5 int a(x) short x; {return x;}
      6 
      7