mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-16 14:31:59 +00:00
e3ff5ada8a
Remove "target endian/pointersize" or add "target datalayout" to make the test parse properly or set the datalayout because defaults changes. For PR645: Make global names use the @ prefix. For llvm-upgrade changes: Fix test cases or completely remove use of llvm-upgrade for test cases that cannot survive the new renaming or upgrade capabilities. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33533 91177308-0d34-0410-b5e6-96231b3b80d8
21 lines
546 B
LLVM
21 lines
546 B
LLVM
; Test that: extern int X[] and int X[] = { 1, 2, 3, 4 } are resolved
|
|
; correctly. This doesn't have constantexprs
|
|
;
|
|
; RUN: llvm-as < %s | opt -funcresolve | llvm-dis | not grep external
|
|
;
|
|
|
|
@X = external global [0 x 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 [0 x int]* @X, long 0, long 1
|
|
store int 5, int* %G
|
|
%F = getelementptr [0 x int]* @X, long 0, long 2
|
|
%val = load int* %F
|
|
ret int %val
|
|
}
|
|
|