~pali/+junk/llvm-toolchain-3.7

« back to all changes in this revision

Viewing changes to test/Transforms/Inline/inline-invoke-tail.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
; RUN: opt < %s -inline -S | not grep "tail call void @llvm.memcpy.i32"
 
2
; PR3550
 
3
 
 
4
define internal void @foo(i32* %p, i32* %q) {
 
5
        %pp = bitcast i32* %p to i8*
 
6
        %qq = bitcast i32* %q to i8*
 
7
        tail call void @llvm.memcpy.p0i8.p0i8.i32(i8* %pp, i8* %qq, i32 4, i32 1, i1 false)
 
8
        ret void
 
9
}
 
10
 
 
11
declare void @llvm.memcpy.i32(i8* nocapture, i8* nocapture, i32, i32) nounwind
 
12
 
 
13
define i32 @main() personality i32 (...)* @__gxx_personality_v0 {
 
14
        %a = alloca i32         ; <i32*> [#uses=3]
 
15
        %b = alloca i32         ; <i32*> [#uses=2]
 
16
        store i32 1, i32* %a, align 4
 
17
        store i32 0, i32* %b, align 4
 
18
        invoke void @foo(i32* %a, i32* %b)
 
19
                        to label %invcont unwind label %lpad
 
20
 
 
21
invcont:
 
22
        %retval = load i32, i32* %a, align 4
 
23
        ret i32 %retval
 
24
 
 
25
lpad:
 
26
        %exn = landingpad {i8*, i32}
 
27
            catch i8* null
 
28
        unreachable
 
29
}
 
30
 
 
31
declare i32 @__gxx_personality_v0(...)
 
32
 
 
33
declare void @llvm.memcpy.p0i8.p0i8.i32(i8* nocapture, i8* nocapture, i32, i32, i1) nounwind