Daniel Thornburgh e7f6038e89
[LLVM] Mark reloc-none test unsupported on Hexagon (#171205)
Prevents infinite loop issue recorded in #147427. More work will be
required to make @llvm.reloc_none work correctly on Hexagon.
2025-12-08 21:36:23 +00:00

12 lines
246 B
LLVM

; RUN: llc < %s | FileCheck %s
; CHECK: .reloc {{.*}}, BFD_RELOC_NONE, foo
; UNSUPPORTED: target=hexagon{{.*}}
define void @test_reloc_none() {
call void @llvm.reloc.none(metadata !"foo")
ret void
}
declare void @llvm.reloc.none(metadata)