dllimport-globalref.ll 335 B

1234567891011121314
  1. ; RUN: llvm-as %s -o - | llvm-nm - | FileCheck %s
  2. ; We should technically emit an unmangled reference to f here,
  3. ; but no existing linker needs this.
  4. ; XFAIL: *
  5. target datalayout = "e-m:w-i64:64-f80:128-n8:16:32:64-S128"
  6. target triple = "x86_64-pc-windows-msvc"
  7. ; CHECK: U f
  8. declare dllimport void @f()
  9. @fp = constant void ()* @f