blob: c83c105724a49aa7b4fdd722f7edacb37c3b1683 [file] [log] [blame]
Nikolai Bozhenov1cf9c542017-12-07 12:35:02 +00001; This tests that llc accepts Nios2 processors.
2
3; RUN: not not llc < %s -asm-verbose=false -march=nios2 -mcpu=nios2r1 2>&1 | FileCheck %s --check-prefix=ARCH
4; RUN: not not llc < %s -asm-verbose=false -march=nios2 -mcpu=nios2r2 2>&1 | FileCheck %s --check-prefix=ARCH
5
6; ARCH-NOT: is not a recognized processor
7
8define i32 @f(i32 %i) {
9 ret i32 %i
10}