summaryrefslogtreecommitdiffstats
path: root/llvm/test/Transforms
diff options
context:
space:
mode:
authorSanjay Patel <spatel@rotateright.com>2016-05-09 18:54:14 +0000
committerSanjay Patel <spatel@rotateright.com>2016-05-09 18:54:14 +0000
commitda7fe0c4a4954145844c01d86886a7b77b70f861 (patch)
treef9fc72ac9b0bb9423efee4db076b84df58e85a21 /llvm/test/Transforms
parentd9563b8b250fac7359ad7dd58ecc16c49bd5851b (diff)
downloadbcm5719-llvm-da7fe0c4a4954145844c01d86886a7b77b70f861.tar.gz
bcm5719-llvm-da7fe0c4a4954145844c01d86886a7b77b70f861.zip
clean up; NFC
llvm-svn: 268949
Diffstat (limited to 'llvm/test/Transforms')
-rw-r--r--llvm/test/Transforms/Inline/alloca_test.ll20
1 files changed, 11 insertions, 9 deletions
diff --git a/llvm/test/Transforms/Inline/alloca_test.ll b/llvm/test/Transforms/Inline/alloca_test.ll
index 8464259ce1f..1894c434131 100644
--- a/llvm/test/Transforms/Inline/alloca_test.ll
+++ b/llvm/test/Transforms/Inline/alloca_test.ll
@@ -4,20 +4,22 @@
; RUN: opt -S -inline < %s | FileCheck %s
define i32 @func(i32 %i) {
- %X = alloca i32 ; <i32*> [#uses=1]
- store i32 %i, i32* %X
- ret i32 %i
+ %X = alloca i32
+ store i32 %i, i32* %X
+ ret i32 %i
}
declare void @bar()
define i32 @main(i32 %argc) {
+; CHECK-LABEL: @main(
+; CHECK-NEXT: Entry:
+; CHECK-NEXT: [[X_I:%.*]] = alloca i32
+;
Entry:
-; CHECK: Entry
-; CHECK-NEXT: alloca
- call void @bar( )
- %X = call i32 @func( i32 7 ) ; <i32> [#uses=1]
- %Y = add i32 %X, %argc ; <i32> [#uses=1]
- ret i32 %Y
+ call void @bar( )
+ %X = call i32 @func( i32 7 )
+ %Y = add i32 %X, %argc
+ ret i32 %Y
}
OpenPOWER on IntegriCloud