summaryrefslogtreecommitdiff
path: root/test/CodeGen/MSP430/2009-08-25-DynamicStackAlloc.ll
blob: ca54ff0c3b48b94aee8a0832d74f81e86f1d4dd1 (plain)
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
; RUN: llc < %s
; PR4769
target datalayout = "e-p:16:8:8-i8:8:8-i16:8:8-i32:8:8"
target triple = "msp430-generic-generic"

define i16 @foo() nounwind readnone {
entry:
  %result = alloca i16, align 1                   ; <i16*> [#uses=2]
  store volatile i16 0, i16* %result
  %tmp = load volatile i16, i16* %result               ; <i16> [#uses=1]
  ret i16 %tmp
}

define i16 @main() nounwind {
entry:
  br label %while.cond

while.cond:                                       ; preds = %while.cond, %entry
  %call = call i16 @bar() nounwind                ; <i16> [#uses=1]
  %tobool = icmp eq i16 %call, 0                  ; <i1> [#uses=1]
  br i1 %tobool, label %while.end, label %while.cond

while.end:                                        ; preds = %while.cond
  %result.i = alloca i16, align 1                 ; <i16*> [#uses=2]
  store volatile i16 0, i16* %result.i
  %tmp.i = load volatile i16, i16* %result.i           ; <i16> [#uses=0]
  ret i16 0
}

declare i16 @bar()