bolt/deps/llvm-18.1.8/llvm/test/Assembler/non-global-value-max-name-size.ll

16 lines
254 B
LLVM
Raw Normal View History

2025-02-14 19:21:04 +01:00
; RUN: opt < %s -S -non-global-value-max-name-size=5
; RUN: not opt < %s -S -non-global-value-max-name-size=4 2>&1 | FileCheck %s
; CHECK: name is too long
define void @f() {
bb0:
br label %testz
testz:
br label %testa
testa:
br label %testz
}