Nikolai Bozhenov | 1cf9c54 | 2017-12-07 12:35:02 +0000 | [diff] [blame] | 1 | ; 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 | |||||
8 | define i32 @f(i32 %i) { | ||||
9 | ret i32 %i | ||||
10 | } |