mirror of
https://github.com/opnsense/src.git
synced 2026-03-18 00:25:50 -04:00
15 lines
222 B
LLVM
15 lines
222 B
LLVM
; RUN: llc < %s -march=xcore | FileCheck %s
|
|
|
|
; CHECK: .align 4
|
|
; CHECK-LABEL: f:
|
|
define void @f() nounwind {
|
|
entry:
|
|
ret void
|
|
}
|
|
|
|
; CHECK: .align 2
|
|
; CHECK-LABEL: g:
|
|
define void @g() nounwind optsize {
|
|
entry:
|
|
ret void
|
|
}
|