xref: /llvm-project/llvm/test/CodeGen/X86/offset-operator.ll (revision 2f448bf509432c1a19ec46ab8cbc7353c03c6280)
1; RUN: llc -mtriple=x86_64-unknown-linux-gnu -x86-asm-syntax=intel -relocation-model=static < %s | FileCheck %s
2
3; Test we are emitting the 'offset' operator upon an immediate reference of a label:
4; The emitted 'att-equivalent' of this one is "movl $.L.str, %eax"
5
6@.str = private unnamed_addr constant [1 x i8] zeroinitializer, align 1
7
8define ptr @test_offset_operator() {
9; CHECK-LABEL: test_offset_operator:
10; CHECK:       # %bb.0: # %entry
11; CHECK-NEXT:    mov eax, offset .L.str
12; CHECK-NEXT:    ret
13entry:
14  ret ptr @.str
15}
16