1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 11:02:59 +02:00
llvm-mirror/test/Bitcode/avr-calling-conventions.ll
Dylan McKay 94ce19c111 [AVR] Add calling convention parser tokens
Summary: Adds the 'avr_intrcc' and 'avr_signalcc' IR calling convention tokens to the parser.

Reviewers: arsenm

Subscribers: dylanmckay, llvm-commits

Differential Revision: http://reviews.llvm.org/D16348

llvm-svn: 262600
2016-03-03 10:08:02 +00:00

17 lines
288 B
LLVM

; RUN: llvm-dis < %s.bc | FileCheck %s
; CHECK: define avr_intrcc void @foo(i8)
define avr_intrcc void @foo(i8) {
ret void
}
; CHECK: define avr_signalcc void @bar(i8)
define avr_signalcc void @bar(i8) {
ret void
}
; CHECK: define void @baz(i8)
define void @baz(i8) {
ret void
}