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

« back to all changes in this revision

Viewing changes to test/Transforms/Inline/2008-09-02-AlwaysInline.ll

  • Committer: Package Import Robot
  • Author(s): Sylvestre Ledru
  • Date: 2012-04-01 23:45:03 UTC
  • mfrom: (1.1.1)
  • Revision ID: package-import@ubuntu.com-20120401234503-c04qxrk7s9my53uy
Tags: 3.1~svn153852-1
New snapshot release

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
; RUN: opt < %s  -inline-threshold=0 -inline -S | not grep call 
2
 
 
3
 
define i32 @fn2() alwaysinline {
4
 
  ret i32 1
5
 
}
6
 
 
7
 
define i32 @fn3() {
8
 
   %r = call i32 @fn2()
9
 
   ret i32 %r
10
 
}