Nikolai Bozhenov | 82f0801 | 2017-05-29 09:48:30 +0000 | [diff] [blame] | 1 | ; This tests that llc accepts Nios2 target. |
2 | |||||
3 | ; RUN: not not llc < %s -asm-verbose=false -march=nios2 2>&1 | FileCheck %s --check-prefix=ARCH | ||||
4 | ; RUN: not not llc < %s -asm-verbose=false -mtriple=nios2 2>&1 | FileCheck %s --check-prefix=TRIPLE | ||||
5 | |||||
6 | ; ARCH-NOT: invalid target | ||||
7 | ; TRIPLE-NOT: unable to get target | ||||
8 | |||||
9 | define i32 @f(i32 %i) { | ||||
10 | ret i32 %i | ||||
11 | } |