blob: 82c8252e7bbc8f7b5d7fedc59a4a3cbbd61f6b4c [file] [log] [blame]
NAKAMURA Takumi37947c62011-03-16 13:52:51 +00001; RUN: llc < %s -o - -mtriple=x86_64-linux | FileCheck %s
2; RUN: llc < %s -o - -mtriple=x86_64-win32 | FileCheck %s -check-prefix=WIN64
Dan Gohman607a0502009-09-09 14:22:57 +00003; PR4891
4
5; Both loads should happen before either store.
6
7; CHECK: movl (%rdi), %eax
8; CHECK: movl (%rsi), %ecx
9; CHECK: movl %ecx, (%rdi)
10; CHECK: movl %eax, (%rsi)
11
NAKAMURA Takumi37947c62011-03-16 13:52:51 +000012; WIN64: movl (%rcx), %eax
13; WIN64: movl (%rdx), %esi
14; WIN64: movl %esi, (%rcx)
15; WIN64: movl %eax, (%rdx)
16
Dan Gohman607a0502009-09-09 14:22:57 +000017define void @short2_int_swap(<2 x i16>* nocapture %b, i32* nocapture %c) nounwind {
18entry:
19 %0 = load <2 x i16>* %b, align 2 ; <<2 x i16>> [#uses=1]
20 %1 = load i32* %c, align 4 ; <i32> [#uses=1]
21 %tmp1 = bitcast i32 %1 to <2 x i16> ; <<2 x i16>> [#uses=1]
22 store <2 x i16> %tmp1, <2 x i16>* %b, align 2
23 %tmp5 = bitcast <2 x i16> %0 to <1 x i32> ; <<1 x i32>> [#uses=1]
24 %tmp3 = extractelement <1 x i32> %tmp5, i32 0 ; <i32> [#uses=1]
25 store i32 %tmp3, i32* %c, align 4
26 ret void
27}