2013-11-19 12:20:17 +00:00
|
|
|
; RUN: llc -mtriple=mipsel-linux-gnu -march=mipsel -mcpu=mips32 -mattr=+mips16 -relocation-model=static < %s | FileCheck %s -check-prefix=static
|
2013-08-16 23:05:18 +00:00
|
|
|
|
|
|
|
@x = global i32 28912, align 4
|
|
|
|
@y = common global i32 0, align 4
|
|
|
|
|
|
|
|
|
|
|
|
; Function Attrs: nounwind
|
|
|
|
define i32 @main() #0 {
|
|
|
|
entry:
|
|
|
|
%retval = alloca i32, align 4
|
|
|
|
store i32 0, i32* %retval
|
2015-02-27 21:17:42 +00:00
|
|
|
%0 = load i32, i32* @x, align 4
|
2013-08-16 23:05:18 +00:00
|
|
|
%1 = call i32 @llvm.ctlz.i32(i32 %0, i1 true)
|
|
|
|
store i32 %1, i32* @y, align 4
|
|
|
|
ret i32 0
|
|
|
|
}
|
|
|
|
|
|
|
|
; static: .end main
|
|
|
|
|
|
|
|
; Function Attrs: nounwind readnone
|
|
|
|
declare i32 @llvm.ctlz.i32(i32, i1) #1
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-08-22 21:28:54 +00:00
|
|
|
attributes #0 = { nounwind "less-precise-fpmad"="false" "no-frame-pointer-elim"="true" "no-frame-pointer-elim-non-leaf" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "stack-protector-buffer-size"="8" "unsafe-fp-math"="false" "use-soft-float"="true" }
|
2013-08-16 23:05:18 +00:00
|
|
|
attributes #1 = { nounwind readnone }
|
|
|
|
|