Home | History | Annotate | Download | only in Inputs
      1 target datalayout = "e-m:o-i64:64-f80:128-n8:16:32:64-S128"
      2 target triple = "x86_64-apple-macosx10.11.0"
      3 
      4 
      5 declare i32 @bar()
      6 define i32 @foo() {
      7   %a = call i32 @bar()
      8   ret i32 %a
      9 }
     10 
     11