Peter Collingbourne | f549598 | 2015-06-24 18:03:39 +0000 | [diff] [blame^] | 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 | |||||
8 | target datalayout = "e-m:w-i64:64-f80:128-n8:16:32:64-S128" | ||||
9 | target triple = "x86_64-pc-windows-msvc" | ||||
10 | |||||
11 | ; CHECK: U f | ||||
12 | |||||
13 | declare dllimport void @f() | ||||
14 | @fp = constant void ()* @f |