pass machinemoduleinfo down into getSymbolForDwarfGlobalReference,
[llvm/avr.git] / test / CodeGen / X86 / dll-linkage.ll
blobc634c7e1fd4270ce037c1f4e68ff90a5d7b664ec
1 ; RUN: llc < %s -mtriple=i386-pc-mingw32 | FileCheck %s
3 declare dllimport void @foo()
5 define void @bar() nounwind {
6 ; CHECK: call   *__imp__foo
7   call void @foo()
8   ret void