From: Stepan Dyatkovskiy Date: Mon, 27 Jan 2014 09:43:10 +0000 (+0000) Subject: Additional fix for 200201: due to dependence on bitwidth test was moved to X86 directory. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=90193401204ea72f93f403ec9810a9a22aa22e22;p=oota-llvm.git Additional fix for 200201: due to dependence on bitwidth test was moved to X86 directory. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@200202 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/CodeGen/Generic/stores-merging.ll b/test/CodeGen/Generic/stores-merging.ll deleted file mode 100644 index 61dea088995..00000000000 --- a/test/CodeGen/Generic/stores-merging.ll +++ /dev/null @@ -1,23 +0,0 @@ -; RUN: llc < %s | FileCheck %s - -target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-unknown-linux-gnu" - -%structTy = type { i8, i32, i32 } - -@e = common global %structTy zeroinitializer, align 4 - -; CHECK-LABEL: f -define void @f() { -entry: - -; CHECK: movabsq $528280977409, %rax -; CHECK: movq %rax, e+4(%rip) -; CHECK: movl $456, e+8(%rip) - - store i32 1, i32* getelementptr inbounds (%structTy* @e, i64 0, i32 1), align 4 - store i32 123, i32* getelementptr inbounds (%structTy* @e, i64 0, i32 2), align 4 - store i32 456, i32* getelementptr inbounds (%structTy* @e, i64 0, i32 2), align 4 - ret void -} - diff --git a/test/CodeGen/X86/stores-merging.ll b/test/CodeGen/X86/stores-merging.ll new file mode 100644 index 00000000000..61dea088995 --- /dev/null +++ b/test/CodeGen/X86/stores-merging.ll @@ -0,0 +1,23 @@ +; RUN: llc < %s | FileCheck %s + +target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128" +target triple = "x86_64-unknown-linux-gnu" + +%structTy = type { i8, i32, i32 } + +@e = common global %structTy zeroinitializer, align 4 + +; CHECK-LABEL: f +define void @f() { +entry: + +; CHECK: movabsq $528280977409, %rax +; CHECK: movq %rax, e+4(%rip) +; CHECK: movl $456, e+8(%rip) + + store i32 1, i32* getelementptr inbounds (%structTy* @e, i64 0, i32 1), align 4 + store i32 123, i32* getelementptr inbounds (%structTy* @e, i64 0, i32 2), align 4 + store i32 456, i32* getelementptr inbounds (%structTy* @e, i64 0, i32 2), align 4 + ret void +} +