brintos

brintos / llvm-project-archived public Read only

0
0
Text · 297 B · a4d189f Raw
12 lines · plain
1; RUN: llc -mtriple mipsel-windows -filetype obj < %s | llvm-objdump --reloc - | FileCheck %s2 3declare dllimport void @fun()4 5define void @use() nounwind {6; CHECK: 00000008 IMAGE_REL_MIPS_REFHI     __imp_fun7; CHECK: 0000000c IMAGE_REL_MIPS_REFLO     __imp_fun8  call void() @fun()9 10  ret void11}12