diff options
author | Chris Lattner <sabre@nondot.org> | 2006-10-24 16:12:47 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-10-24 16:12:47 +0000 |
commit | cf10391a721438d309de6c02ef406a46e9333d72 (patch) | |
tree | 9422fa13d1903e2bf664d21f04293fe7a34fa354 | |
parent | 62d07d6acef9f5fd807b98a509d164bd3d6f0187 (diff) |
new bad case
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@31156 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Target/README.txt | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/lib/Target/README.txt b/lib/Target/README.txt index e77573e007..1f67bee889 100644 --- a/lib/Target/README.txt +++ b/lib/Target/README.txt @@ -300,3 +300,22 @@ unsigned short read_16_be(const unsigned char *adr) { } //===---------------------------------------------------------------------===// + +-scalarrepl should promote this to be a vector scalar. + + %struct..0anon = type { <4 x float> } +implementation ; Functions: +void %test1(<4 x float> %V, float* %P) { +entry: + %u = alloca %struct..0anon, align 16 ; <%struct..0anon*> [#uses=2] + %tmp = getelementptr %struct..0anon* %u, int 0, uint 0 ; <<4 x float>*> [#uses=1] + store <4 x float> %V, <4 x float>* %tmp + %tmp1 = cast %struct..0anon* %u to [4 x float]* ; <[4 x float]*> [#uses=1] + %tmp = getelementptr [4 x float]* %tmp1, int 0, int 1 ; <float*> [#uses=1] + %tmp = load float* %tmp ; <float> [#uses=1] + %tmp3 = mul float %tmp, 2.000000e+00 ; <float> [#uses=1] + store float %tmp3, float* %P + ret void +} + +//===---------------------------------------------------------------------===// |