NAKAMURA Takumi | c3bf772 | 2011-02-22 07:19:37 +0000 | [diff] [blame^] | 1 | ; RUN: llc < %s -mtriple=x86_64-linux | FileCheck %s |
| 2 | ; RUN: llc < %s -mtriple=x86_64-win32 | FileCheck %s |
Dan Gohman | 83f6120 | 2009-10-28 01:12:16 +0000 | [diff] [blame] | 3 | |
| 4 | ; llc should share constant pool entries between this integer vector |
| 5 | ; and this floating-point vector since they have the same encoding. |
| 6 | |
Dan Gohman | 9f23dee | 2010-04-17 16:29:15 +0000 | [diff] [blame] | 7 | ; CHECK: LCPI0_0(%rip), %xmm0 |
NAKAMURA Takumi | c3bf772 | 2011-02-22 07:19:37 +0000 | [diff] [blame^] | 8 | ; CHECK: movaps %xmm0, ({{%rdi|%rcx}}) |
| 9 | ; CHECK: movaps %xmm0, ({{%rsi|%rdx}}) |
Dan Gohman | 83f6120 | 2009-10-28 01:12:16 +0000 | [diff] [blame] | 10 | |
| 11 | define void @foo(<4 x i32>* %p, <4 x float>* %q, i1 %t) nounwind { |
| 12 | entry: |
| 13 | br label %loop |
| 14 | loop: |
| 15 | store <4 x i32><i32 1073741824, i32 1073741824, i32 1073741824, i32 1073741824>, <4 x i32>* %p |
| 16 | store <4 x float><float 2.0, float 2.0, float 2.0, float 2.0>, <4 x float>* %q |
| 17 | br i1 %t, label %loop, label %ret |
| 18 | ret: |
| 19 | ret void |
| 20 | } |