File: 2006-03-03-BadArraySubscript.ll

package info (click to toggle)
llvm 2.2-12
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 38,648 kB
  • ctags: 28,258
  • sloc: cpp: 215,479; sh: 12,132; ansic: 10,002; yacc: 5,525; perl: 2,352; ml: 1,580; makefile: 956; pascal: 718; lex: 602; exp: 320; ada: 193; lisp: 160; csh: 116; objc: 59; python: 59; tcl: 20
file content (32 lines) | stat: -rw-r--r-- 1,336 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
; RUN: llvm-upgrade < %s | llvm-as | \
; RUN:   opt -aa-eval -disable-output |& grep {2 no alias respon}

;; TEST that A[1][0] may alias A[0][i].

void %test(int %N) {
entry:
	%X = alloca [3 x [3 x int]]		; <[3 x [3 x int]]*> [#uses=4]
	%tmp.24 = setgt int %N, 0		; <bool> [#uses=1]
	br bool %tmp.24, label %no_exit, label %loopexit

no_exit:		; preds = %no_exit, %entry
	%i.0.0 = phi int [ 0, %entry ], [ %inc, %no_exit ]		; <int> [#uses=2]
	%tmp.6 = getelementptr [3 x [3 x int]]* %X, int 0, int 0, int %i.0.0		; <int*> [#uses=1]
	store int 1, int* %tmp.6
	%tmp.8 = getelementptr [3 x [3 x int]]* %X, int 0, int 0, int 0		; <int*> [#uses=1]
	%tmp.9 = load int* %tmp.8		; <int> [#uses=1]
	%tmp.11 = getelementptr [3 x [3 x int]]* %X, int 0, int 1, int 0		; <int*> [#uses=1]
	%tmp.12 = load int* %tmp.11		; <int> [#uses=1]
	%tmp.13 = add int %tmp.12, %tmp.9		; <int> [#uses=1]
	%inc = add int %i.0.0, 1		; <int> [#uses=2]
	%tmp.2 = setlt int %inc, %N		; <bool> [#uses=1]
	br bool %tmp.2, label %no_exit, label %loopexit

loopexit:		; preds = %no_exit, %entry
	%Y.0.1 = phi int [ 0, %entry ], [ %tmp.13, %no_exit ]		; <int> [#uses=1]
	%tmp.4 = getelementptr [3 x [3 x int]]* %X, int 0, int 0		; <[3 x int]*> [#uses=1]
	%tmp.15 = call int (...)* %foo( [3 x int]* %tmp.4, int %Y.0.1 )		; <int> [#uses=0]
	ret void
}

declare int %foo(...)