~ubuntu-branches/ubuntu/vivid/emscripten/vivid

« back to all changes in this revision

Viewing changes to tests/cases/aliasbitcast2_noasm.ll

  • Committer: Package Import Robot
  • Author(s): Sylvestre Ledru
  • Date: 2013-05-02 13:11:51 UTC
  • Revision ID: package-import@ubuntu.com-20130502131151-q8dvteqr1ef2x7xz
Tags: upstream-1.4.1~20130504~adb56cb
ImportĀ upstreamĀ versionĀ 1.4.1~20130504~adb56cb

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
; ModuleID = '/tmp/emscripten/tmp/src.cpp.o'
 
2
target datalayout = "e-p:32:32:32-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:32:64-f32:32:32-f64:32:64-v64:64:64-v128:128:128-a0:0:64-f80:32:32-n8:16:32"
 
3
target triple = "i386-pc-linux-gnu"
 
4
 
 
5
@.str = private constant [14 x i8] c"hello, world!\00", align 1 ; [#uses=1]
 
6
 
 
7
@othername = alias bitcast (void ()* @original to void (i32)*) ; [#uses=1]
 
8
 
 
9
; [#uses=2]
 
10
define void @original() {
 
11
entry:
 
12
  %0 = call i32 bitcast (i32 (i8*)* @puts to i32 (i32*)*)(i8* getelementptr inbounds ([14 x i8]* @.str, i32 0, i32 0)) ; [#uses=0]
 
13
  br label %return
 
14
 
 
15
return:                                           ; preds = %entry
 
16
  ret void
 
17
}
 
18
 
 
19
; [#uses=1]
 
20
declare i32 @puts(i8*)
 
21
 
 
22
; [#uses=0]
 
23
define i32 @main() {
 
24
entry:
 
25
  call void @othername(i32 5)
 
26
  ret i32 0
 
27
}