• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1; RUN: llc < %s -march=avr | FileCheck %s
2
3define i8 @neg8(i8 %x) {
4; CHECK-LABEL: neg8:
5; CHECK: neg r24
6  %sub = sub i8 0, %x
7  ret i8 %sub
8}
9