mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 10:42:39 +01:00
28eacee1d2
The 'CHECK: add' line was occasionally matching against the filename, breaking the subsequent CHECK-NOT. Also use CHECK-LABEL. llvm-svn: 206936
15 lines
213 B
LLVM
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
|