Revert r354244 "[DAGCombiner] Eliminate dead stores to stack."
[llvm-complete.git] / test / CodeGen / X86 / negative-offset.ll
blobdc1b255d02029ed1feef711ef528b98f3a94543a
1 ; RUN: llc < %s -asm-verbose=false | FileCheck %s
3 target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
4 target triple = "x86_64-unknown-linux-gnu"
6 ; Test that a constant consisting of a global symbol with a negative offset
7 ; is properly folded and isel'd.
9 ; CHECK-LABEL: negative_offset:
10 ; CHECK: movl   $G, %eax
11 ; CHECK: notq   %rax
12 ; CHECK: addq   %rdi, %rax
13 ; CHECK: retq
14 @G = external global [8 x i32]
15 define i8* @negative_offset(i8* %a) {
16   %t = getelementptr i8, i8* %a, i64 sub (i64 -1, i64 ptrtoint ([8 x i32]* @G to i64))
17   ret i8* %t