mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-01 00:33:09 +00:00
New testcase
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4097 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
388f56d7dc
commit
a99fb66d89
@ -0,0 +1,23 @@
|
||||
; Test that: extern int X[] and int X[] = { 1, 2, 3, 4 } are resolved
|
||||
; correctly. This doesn't have constantexprs
|
||||
;
|
||||
; RUN: if as < %s | opt -funcresolve | dis | grep external
|
||||
; RUN: then exit 1
|
||||
; RUN: else exit 0
|
||||
; RUN: fi
|
||||
;
|
||||
|
||||
%X = external global int
|
||||
%X = global [4 x int] [ int 1, int 2, int 3, int 4 ]
|
||||
|
||||
implementation ; Functions:
|
||||
|
||||
int %foo(int %x) {
|
||||
bb1: ;[#uses=0]
|
||||
%G = getelementptr int* %X, long 1
|
||||
store int 5, int* %G
|
||||
%F = getelementptr int* %X, long 2
|
||||
%val = load int* %F
|
||||
ret int %val
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user