mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-14 11:32:34 +00:00
0565503d5d
Patch by Björn Steinbrink git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@216930 91177308-0d34-0410-b5e6-96231b3b80d8
13 lines
313 B
LLVM
13 lines
313 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 <2 x i64*> %0, <2 x i64> <i64 0, i64 0>
|
|
ret void
|
|
}
|
|
|
|
define void @bar(<2 x i64*>) {
|
|
%tmp = getelementptr <2 x i64*> %0, <2 x i64> <i64 0, i64 0>
|
|
ret void
|
|
}
|