1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 11:02:59 +02:00
llvm-mirror/test/CodeGen/ARM/stack-frame.ll
Reid Kleckner 28eacee1d2 Fix test/CodeGen/arm.ll
The 'CHECK: add' line was occasionally matching against the filename,
breaking the subsequent CHECK-NOT.  Also use CHECK-LABEL.

llvm-svn: 206936
2014-04-23 01:09:29 +00:00

15 lines
213 B
LLVM

; 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-LABEL: f2:
; CHECK-NOT: add