brintos

brintos / llvm-project-archived public Read only

0
0
Text · 392 B · c7c9ee5 Raw
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