You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
226 B
12 lines
226 B
4 months ago
|
; Bugzilla: https://bugs.llvm.org/show_bug.cgi?id=33623
|
||
|
; RUN: llvm-diff %s %s
|
||
|
|
||
|
%A = type { i64, i64 }
|
||
|
@_gm_ = global <2 x %A*> zeroinitializer
|
||
|
|
||
|
define void @f() {
|
||
|
entry:
|
||
|
store <2 x %A*> undef, <2 x %A*>* @_gm_
|
||
|
ret void
|
||
|
}
|