Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / llvm / test / CodeGen / X86 / add32ri8.ll
blob60d59677c00125a3b09e30fa212c6a11739a0793
1 ; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py UTC_ARGS: --version 2
2 ; RUN: llc -mtriple=x86_64-linux -fast-isel -show-mc-encoding < %s | FileCheck %s
4 ; pr22854
5 define void @foo(ptr %s, i32 %x) {
6 ; CHECK-LABEL: foo:
7 ; CHECK:       # %bb.0:
8 ; CHECK-NEXT:    addl $42, %esi # encoding: [0x83,0xc6,0x2a]
9 ; CHECK-NEXT:    movl %esi, (%rdi) # encoding: [0x89,0x37]
10 ; CHECK-NEXT:    retq # encoding: [0xc3]
11   %y = add nsw i32 %x, 42
12   store i32 %y, ptr %s, align 4
13   ret void