blob: c91627cd27a3b800793edfbfc4a51f983d35c742 [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
Jakob Stoklund Olesen2e3e7202011-06-03 22:45:21 +00007; CHECK: movl (%rdi), %[[R1:...]]
8; CHECK: movl (%rsi), %[[R2:...]]
9; CHECK: movl %[[R2]], (%rdi)
10; CHECK: movl %[[R1]], (%rsi)
Dan Gohman607a0502009-09-09 14:22:57 +000011
Jakob Stoklund Olesen2e3e7202011-06-03 22:45:21 +000012; WIN64: movl (%rcx), %[[R1:...]]
13; WIN64: movl (%rdx), %[[R2:...]]
14; WIN64: movl %[[R2]], (%rcx)
15; WIN64: movl %[[R1]], (%rdx)
NAKAMURA Takumi37947c62011-03-16 13:52:51 +000016
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}