mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-10-31 07:52:55 +01:00
78034d30e0
These tests in particular try to use escaped square brackets as an argument to grep, which is failing for me with native win32 python. It appears the backslash is being lost near the CreateProcess*() call. llvm-svn: 173506
13 lines
352 B
LLVM
13 lines
352 B
LLVM
; Scalar replacement was incorrectly promoting this alloca!!
|
|
;
|
|
; RUN: opt < %s -scalarrepl -S | FileCheck %s
|
|
|
|
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
|
|
}
|
|
; CHECK: alloca [
|