File: 2003-07-07-BadLongConst.ll

package info (click to toggle)
llvm-3.0 3.0-10
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 75,412 kB
  • sloc: cpp: 468,043; asm: 109,345; ansic: 13,782; sh: 12,935; ml: 4,716; python: 4,351; perl: 2,096; makefile: 1,905; pascal: 1,578; exp: 389; xml: 283; lisp: 187; csh: 117
file content (20 lines) | stat: -rw-r--r-- 727 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
; RUN: llc < %s

@.str_1 = internal constant [42 x i8] c"   ui = %u (0x%x)\09\09UL-ui = %lld (0x%llx)\0A\00"             ; <[42 x i8]*> [#uses=1]

declare i32 @printf(i8*, ...)

define internal i64 @getL() {
entry:
        ret i64 -5787213826675591005
}

define i32 @main(i32 %argc.1, i8** %argv.1) {
entry:
        %tmp.11 = call i64 @getL( )             ; <i64> [#uses=2]
        %tmp.5 = trunc i64 %tmp.11 to i32               ; <i32> [#uses=2]
        %tmp.23 = and i64 %tmp.11, -4294967296          ; <i64> [#uses=2]
        %tmp.16 = call i32 (i8*, ...)* @printf( i8* getelementptr ([42 x i8]* @.str_1, i64 0, i64 0), i32 %tmp.5, i32 %tmp.5, i64 %tmp.23, i64 %tmp.23 )              ; <i32> [#uses=0]
        ret i32 0
}