File: 2009-05-10-CyclicDAG.ll

package info (click to toggle)
llvm-3.0 3.0-10
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 75,412 kB
  • sloc: cpp: 468,043; asm: 109,345; ansic: 13,782; sh: 12,935; ml: 4,716; python: 4,351; perl: 2,096; makefile: 1,905; pascal: 1,578; exp: 389; xml: 283; lisp: 187; csh: 117
file content (32 lines) | stat: -rw-r--r-- 672 bytes parent folder | download | duplicates (4)
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: llc < %s
; PR4136

target datalayout = "e-p:16:8:8-i8:8:8-i16:8:8-i32:8:8"
target triple = "msp430-unknown-linux-gnu"
@uip_len = external global i16		; <i16*> [#uses=2]

define void @uip_arp_arpin() nounwind {
entry:
	%tmp = volatile load i16* @uip_len		; <i16> [#uses=1]
	%cmp = icmp ult i16 %tmp, 42		; <i1> [#uses=1]
	volatile store i16 0, i16* @uip_len
	br i1 %cmp, label %if.then, label %if.end

if.then:		; preds = %entry
	ret void

if.end:		; preds = %entry
	switch i16 0, label %return [
		i16 256, label %sw.bb
		i16 512, label %sw.bb18
	]

sw.bb:		; preds = %if.end
	ret void

sw.bb18:		; preds = %if.end
	ret void

return:		; preds = %if.end
	ret void
}