mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 03:33:20 +01:00
16751cde78
llvm-svn: 206331
15 lines
179 B
LLVM
15 lines
179 B
LLVM
; RUN: llc -mtriple=thumb-eabi < %s -o - | FileCheck %s
|
|
|
|
define void @f1() {
|
|
%c = alloca i8, align 1
|
|
ret void
|
|
}
|
|
|
|
define i32 @f2() {
|
|
ret i32 1
|
|
}
|
|
|
|
; CHECK: add
|
|
; CHECK-NOT: add
|
|
|