blob: 90e7020b2fcc6fe2706ff891a568ee12a179085f [file] [log] [blame]
Nikolai Bozhenov82f08012017-05-29 09:48:30 +00001; 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
9define i32 @f(i32 %i) {
10 ret i32 %i
11}