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

« back to all changes in this revision

Viewing changes to tests/cases/unannotated__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 = 'test.bc'
 
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-unknown-linux-gnu"
 
4
 
 
5
@.str = private unnamed_addr constant [6 x i8] c"test\0A\00"
 
6
 
 
7
declare hidden zeroext i1 @_OptionParser(i8*, i8) ; separate test: check that we can compile this line (zeroext confused us)
 
8
 
 
9
define i32 @main() nounwind {
 
10
  %1 = alloca i32, align 4
 
11
  store i32 0, i32* %1
 
12
  %2 = call i32 @llvm.expect.i32(i32 0, i32 1)
 
13
  %3 = call i32 @puts(i8* getelementptr inbounds ([6 x i8]* @.str, i32 0, i32 0))
 
14
  ret i32 0
 
15
}
 
16
 
 
17
declare i32 @puts(i8*)
 
18
 
 
19
declare i32 @llvm.expect.i32(i32, i32)
 
20