~ubuntu-branches/ubuntu/quantal/llvm-3.1/quantal

« back to all changes in this revision

Viewing changes to test/Transforms/ScalarRepl/2003-10-29-ArrayProblem.ll

  • Committer: Package Import Robot
  • Author(s): Sylvestre Ledru
  • Date: 2012-03-29 19:09:51 UTC
  • Revision ID: package-import@ubuntu.com-20120329190951-aq83ivog4cg8bxun
Tags: upstream-3.1~svn153643
ImportĀ upstreamĀ versionĀ 3.1~svn153643

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
; RUN: opt < %s -scalarrepl -S | grep {alloca %%T}
 
2
 
 
3
%T = type { [80 x i8], i32, i32 }
 
4
declare i32 @.callback_1(i8*)
 
5
 
 
6
declare void @.iter_2(i32 (i8*)*, i8*)
 
7
 
 
8
define i32 @main() {
 
9
        %d = alloca %T          ; <{ [80 x i8], i32, i32 }*> [#uses=2]
 
10
        %tmp.0 = getelementptr %T* %d, i64 0, i32 2             ; <i32*> [#uses=1]
 
11
        store i32 0, i32* %tmp.0
 
12
        %tmp.1 = getelementptr %T* %d, i64 0, i32 0, i64 0              ; <i8*> [#uses=1]
 
13
        call void @.iter_2( i32 (i8*)* @.callback_1, i8* %tmp.1 )
 
14
        ret i32 0
 
15
}
 
16