mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-10-30 15:32:52 +01:00
24762cd819
llvm-svn: 28479
10 lines
228 B
LLVM
10 lines
228 B
LLVM
; RUN: llvm-as < %s | opt -instcombine | llvm-dis | grep undef
|
|
; XFAIL: *
|
|
|
|
%str = constant [4 x ubyte] c"str\00"
|
|
|
|
ubyte %main() {
|
|
%A = load ubyte* getelementptr ([4 x ubyte]* %str, long 0, long 5)
|
|
ret ubyte %A
|
|
}
|