]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - test/CodeGen/X86/negative-offset.ll
Vendor import of llvm trunk r291274:
[FreeBSD/FreeBSD.git] / test / CodeGen / X86 / negative-offset.ll
1 ; RUN: llc < %s -asm-verbose=false | FileCheck %s
2
3 target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
4 target triple = "x86_64-unknown-linux-gnu"
5
6 ; Test that a constant consisting of a global symbol with a negative offset
7 ; is properly folded and isel'd.
8
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
18 }