mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
391ac08575
Summary: This adds all of the CodeGen tests which currently pass. Reviewers: arsenm, kparzysz Subscribers: japaric, wdng Differential Revision: https://reviews.llvm.org/D26388 llvm-svn: 286418
8 lines
112 B
LLVM
8 lines
112 B
LLVM
; RUN: llc < %s -march=avr | FileCheck %s
|
|
|
|
define void @foo(i1) {
|
|
; CHECK-LABEL: foo:
|
|
; CHECK: ret
|
|
ret void
|
|
}
|