16 lines · plain
1; RUN: llc -mtriple=arm64ec-pc-windows-msvc %s -o - | FileCheck %s2 3; Regression test: Arm64EC needs to look at the first character of a function4; to decide if it will be mangled like a C or C++ function name, which caused5; it to crash for empty function names.6define void @""() {7 ret void8}9 10define void @""() {11 ret void12}13 14; CHECK: "#__unnamed":15; CHECK: "#__unnamed.1":16