1; Check that we split named function arguments correctly into a separate CHECK line,
2; ensuring the opening parenthesis is on the label name, avoiding incorrect label
3; matches if function names are not prefix free.
4;
5; RUN: opt < %s -passes=instsimplify -S | FileCheck %s
6;
7define i32 @"foo"(i32 %named) {
8entry:
9  ret i32 %named
10}
11