Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / llvm / test / CodeGen / X86 / offset-operator.ll
blob1c03eea927e4d1947569ff78025c2ea34c4b269f
1 ; RUN: llc -mtriple=x86_64-unknown-linux-gnu -x86-asm-syntax=intel -relocation-model=static < %s | FileCheck %s
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"
6 @.str = private unnamed_addr constant [1 x i8] zeroinitializer, align 1
8 define 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
13 entry:
14   ret ptr @.str