~pali/+junk/llvm-toolchain-3.7

« back to all changes in this revision

Viewing changes to test/ExecutionEngine/OrcMCJIT/2003-05-06-LivenessClobber.ll

  • Committer: Package Import Robot
  • Author(s): Sylvestre Ledru
  • Date: 2015-07-15 17:51:08 UTC
  • Revision ID: package-import@ubuntu.com-20150715175108-l8mynwovkx4zx697
Tags: upstream-3.7~+rc2
ImportĀ upstreamĀ versionĀ 3.7~+rc2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
; This testcase should return with an exit code of 1.
 
2
;
 
3
; RUN: not %lli -jit-kind=orc-mcjit %s
 
4
 
 
5
@test = global i64 0            ; <i64*> [#uses=1]
 
6
 
 
7
define internal i64 @test.upgrd.1() {
 
8
        %tmp.0 = load i64, i64* @test           ; <i64> [#uses=1]
 
9
        %tmp.1 = add i64 %tmp.0, 1              ; <i64> [#uses=1]
 
10
        ret i64 %tmp.1
 
11
}
 
12
 
 
13
define i32 @main() {
 
14
        %L = call i64 @test.upgrd.1( )          ; <i64> [#uses=1]
 
15
        %I = trunc i64 %L to i32                ; <i32> [#uses=1]
 
16
        ret i32 %I
 
17
}
 
18
 
 
19