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

« back to all changes in this revision

Viewing changes to tests/cases/fp80.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 = '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 unnamed_addr constant [15 x i8] c"hello, world!\0A\00" ; [#uses=1]
 
6
 
 
7
; [#uses=0]
 
8
define i32 @main() {
 
9
entry:
 
10
  %x = zext i32 0 to x86_fp80
 
11
  %1 = bitcast x86_fp80 %x to i80
 
12
  %2 = trunc i80 %1 to i32
 
13
  %retval = alloca i32, align 4                   ; [#uses=1]
 
14
  store i32 0, i32* %retval
 
15
  %call = call i32 (i8*, ...)* @printf(i8* getelementptr inbounds ([15 x i8]* @.str, i32 0, i32 0)) ; [#uses=0]
 
16
  ret i32 0
 
17
}
 
18
 
 
19
; [#uses=1]
 
20
declare i32 @printf(i8*, ...)
 
21