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