aboutsummaryrefslogtreecommitdiff
path: root/llvm/test/Linker/override.ll
blob: 8eadcd4cc12de27e4033524e944004d91d6a13e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
; RUN: llvm-link %s -override %S/Inputs/override.ll -S | FileCheck %s
; RUN: llvm-link -override %S/Inputs/override.ll %s -S | FileCheck %s


; CHECK-LABEL: define i32 @foo
; CHECK-NEXT: entry:
; CHECK-NEXT: ret i32 4
define i32 @foo(i32 %i) {
entry:
  %add = add nsw i32 %i, %i
  ret i32 %add
}

; Function Attrs: nounwind ssp uwtable
define i32 @main(i32 %argc, ptr %argv) {
entry:
  %a = call i32 @foo(i32 2)
  ret i32 %a
}