| ; Simple test of functions returning one of its arguments. |
| ; RUN: %llvm2ice --verbose inst %s | FileCheck %s |
| ; RUN: %llvm2ice --verbose none %s | FileCheck --check-prefix=ERRORS %s |
| ; RUN: %llvm2iceinsts %s | %szdiff %s | FileCheck --check-prefix=DUMP %s |
| ; RUN: %llvm2iceinsts --pnacl %s | %szdiff %s \ |
| ; RUN: | FileCheck --check-prefix=DUMP %s |
| define i32 @func_single_arg(i32 %a) { |
| ; CHECK: define i32 @func_single_arg |
| define i32 @func_multiple_args(i32 %a, i32 %b, i32 %c) { |
| ; CHECK: func_multiple_args |
| ; ERRORS-NOT: ICE translation error |