You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
193 B

; RUN: llc < %s -march=avr | FileCheck %s
declare i16 @llvm.bswap.i16(i16)
define i16 @foo(i16) {
; CHECK-LABEL: foo:
entry-block:
%1 = tail call i16 @llvm.bswap.i16(i16 %0)
ret i16 %1
}