mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 00:11:00 +00:00
f2f6ce65b7
input filename so that opt doesn't print the input filename in the output so that grep lines in the tests don't unintentionally match strings in the input filename. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@81537 91177308-0d34-0410-b5e6-96231b3b80d8
14 lines
362 B
LLVM
14 lines
362 B
LLVM
; Scalar replacement was incorrectly promoting this alloca!!
|
|
;
|
|
; RUN: opt < %s -scalarrepl -S | \
|
|
; RUN: sed {s/;.*//g} | grep {\\\[}
|
|
|
|
define i8* @test() {
|
|
%A = alloca [30 x i8] ; <[30 x i8]*> [#uses=1]
|
|
%B = getelementptr [30 x i8]* %A, i64 0, i64 0 ; <i8*> [#uses=2]
|
|
%C = getelementptr i8* %B, i64 1 ; <i8*> [#uses=1]
|
|
store i8 0, i8* %B
|
|
ret i8* %C
|
|
}
|
|
|