blob: a7c2517e7dbe7a76cd352ab1ad2731dabee12f50 [file] [log] [blame]
Anton Korobeynikovc8f63262010-02-12 15:29:13 +00001; RUN: llc < %s | FileCheck %s
2; PR5851
3
4target datalayout = "e-p:32:32:32-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-f80:128:128-v64:64:64-v128:128:128-a0:0:64-f80:32:32-n8:16:32"
Duncan Sandscdd4f8c2010-08-30 10:48:29 +00005target triple = "i386-pc-mingw32"
Anton Korobeynikovc8f63262010-02-12 15:29:13 +00006
7%0 = type { void (...)* }
8
9@B = global %0 { void (...)* bitcast (void ()* @MyFunc to void (...)*) }, align 4
10; CHECK: _B:
11; CHECK: .long _MyFunc@0
12
13define internal x86_stdcallcc void @MyFunc() nounwind {
14entry:
15 ret void
16}