blob: 1b4b427e66f76a1071bf651281a77158b108a949 [file] [log] [blame]
Reed Kotler80f60612013-08-16 23:05:18 +00001; RUN: llc -mtriple=mipsel-linux-gnu -march=mipsel -mcpu=mips32 -mattr=+mips16 -soft-float -mips16-hard-float -relocation-model=static < %s | FileCheck %s -check-prefix=static
2
3@x = global i32 28912, align 4
4@y = common global i32 0, align 4
5
6
7; Function Attrs: nounwind
8define i32 @main() #0 {
9entry:
10 %retval = alloca i32, align 4
11 store i32 0, i32* %retval
12 %0 = load i32* @x, align 4
13 %1 = call i32 @llvm.ctlz.i32(i32 %0, i1 true)
14 store i32 %1, i32* @y, align 4
15 ret i32 0
16}
17
18; static: .end main
19
20; Function Attrs: nounwind readnone
21declare i32 @llvm.ctlz.i32(i32, i1) #1
22
23
24
25attributes #0 = { nounwind "less-precise-fpmad"="false" "no-frame-pointer-elim"="true" "no-frame-pointer-elim-non-leaf"="true" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "stack-protector-buffer-size"="8" "unsafe-fp-math"="false" "use-soft-float"="true" }
26attributes #1 = { nounwind readnone }
27