mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 15:11:24 +00:00
7c9c6ed761
Essentially the same as the GEP change in r230786. A similar migration script can be used to update test cases, though a few more test case improvements/changes were required this time around: (r229269-r229278) import fileinput import sys import re pat = re.compile(r"((?:=|:|^)\s*load (?:atomic )?(?:volatile )?(.*?))(| addrspace\(\d+\) *)\*($| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$)") for line in sys.stdin: sys.stdout.write(re.sub(pat, r"\1, \2\3*\4", line)) Reviewers: rafael, dexonsmith, grosser Differential Revision: http://reviews.llvm.org/D7649 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@230794 91177308-0d34-0410-b5e6-96231b3b80d8
40 lines
1.9 KiB
LLVM
40 lines
1.9 KiB
LLVM
; RUN: llc < %s
|
|
|
|
;; Date: May 28, 2003.
|
|
;; From: test/Programs/External/SPEC/CINT2000/254.gap.llvm.bc
|
|
;; Function: int %OpenOutput(sbyte* %filename.1)
|
|
;;
|
|
;; Error: A sequence of GEPs is folded incorrectly by llc during selection
|
|
;; causing an assertion about a dynamic casting error.
|
|
;; This code sequence was produced (correctly) by preselection
|
|
;; from a nested pair of ConstantExpr getelementptrs.
|
|
;; The code below is the output of preselection.
|
|
;; The original ConstantExprs are included in a comment.
|
|
;;
|
|
;; Cause: FoldGetElemChain() was inserting an extra leading 0 even though
|
|
;; the first instruction in the sequence contributes no indices.
|
|
;; The next instruction contributes a leading non-zero so another
|
|
;; zero should not be added before it!
|
|
;;
|
|
%FileType = type { i32, [256 x i8], i32, i32, i32, i32 }
|
|
@OutputFiles = external global [16 x %FileType] ; <[16 x %FileType]*> [#uses=1]
|
|
@Output = internal global %FileType* null ; <%FileType**> [#uses=1]
|
|
|
|
define internal i32 @OpenOutput(i8* %filename.1) {
|
|
entry:
|
|
%tmp.0 = load %FileType*, %FileType** @Output ; <%FileType*> [#uses=1]
|
|
%tmp.4 = getelementptr %FileType, %FileType* %tmp.0, i64 1 ; <%FileType*> [#uses=1]
|
|
%addrOfGlobal = getelementptr [16 x %FileType], [16 x %FileType]* @OutputFiles, i64 0 ; <[16 x %FileType]*> [#uses=1]
|
|
%constantGEP = getelementptr [16 x %FileType], [16 x %FileType]* %addrOfGlobal, i64 1 ; <[16 x %FileType]*> [#uses=1]
|
|
%constantGEP.upgrd.1 = getelementptr [16 x %FileType], [16 x %FileType]* %constantGEP, i64 0, i64 0 ; <%FileType*> [#uses=1]
|
|
%tmp.10 = icmp eq %FileType* %tmp.4, %constantGEP.upgrd.1 ; <i1> [#uses=1]
|
|
br i1 %tmp.10, label %return, label %endif.0
|
|
|
|
endif.0: ; preds = %entry
|
|
ret i32 0
|
|
|
|
return: ; preds = %entry
|
|
ret i32 1
|
|
}
|
|
|