aboutsummaryrefslogtreecommitdiffstats
path: root/test/CodeGen/ARM/stack-frame.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/ARM/stack-frame.ll')
-rw-r--r--test/CodeGen/ARM/stack-frame.ll8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/CodeGen/ARM/stack-frame.ll b/test/CodeGen/ARM/stack-frame.ll
index a419074aa2..a3b0b66b13 100644
--- a/test/CodeGen/ARM/stack-frame.ll
+++ b/test/CodeGen/ARM/stack-frame.ll
@@ -1,14 +1,14 @@
-; RUN: llc -mtriple=arm-eabi %s -o - | FileCheck %s
+; RUN: llc -mtriple=arm-eabi < %s -o - | FileCheck %s
define void @f1() {
%c = alloca i8, align 1
ret void
}
+; CHECK-LABEL: f1:
+; CHECK: add
define i32 @f2() {
ret i32 1
}
-
-; CHECK: add
+; CHECK-LABEL: f2:
; CHECK-NOT: add
-