1; RUN: llc -mtriple=xtensa -filetype=asm %s -o - | FileCheck %s
2; RUN: llc -mtriple=xtensa -filetype=obj %s -o - | llvm-objdump --arch=xtensa -d - | FileCheck %s --check-prefix=DUMP
3
4; CHECK: .text
5; DUMP: file format elf32-xtensa
6define void @f() {
7 ret void
8}
9