64ac736ec5
Former-commit-id: f3cc9b82f3e5bd8f0fd3ebc098f789556b44e9cd
13 lines
323 B
LLVM
13 lines
323 B
LLVM
; RUN: opt -mergefunc -disable-output < %s
|
|
; This used to cause a crash when compairing the GEPs
|
|
|
|
define void @foo(<2 x i64*>) {
|
|
%tmp = getelementptr i64, <2 x i64*> %0, <2 x i64> <i64 0, i64 0>
|
|
ret void
|
|
}
|
|
|
|
define void @bar(<2 x i64*>) {
|
|
%tmp = getelementptr i64, <2 x i64*> %0, <2 x i64> <i64 0, i64 0>
|
|
ret void
|
|
}
|