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

« back to all changes in this revision

Viewing changes to test/CodeGen/Mips/2008-08-06-Alloca.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: llc -march=mips < %s | FileCheck %s
 
2
 
 
3
define i32 @twoalloca(i32 %size) nounwind {
 
4
entry:
 
5
; CHECK: subu ${{[0-9]+}}, $sp
 
6
; CHECK: subu ${{[0-9]+}}, $sp
 
7
  alloca i8, i32 %size    ; <i8*>:0 [#uses=1]
 
8
  alloca i8, i32 %size    ; <i8*>:1 [#uses=1]
 
9
  call i32 @foo( i8* %0 ) nounwind    ; <i32>:2 [#uses=1]
 
10
  call i32 @foo( i8* %1 ) nounwind    ; <i32>:3 [#uses=1]
 
11
  add i32 %3, %2    ; <i32>:4 [#uses=1]
 
12
  ret i32 %4
 
13
}
 
14
 
 
15
declare i32 @foo(i8*)