brintos

brintos / llvm-project-archived public Read only

0
0
Text · 257 B · 918904a Raw
10 lines · plain
1; RUN: llc -mtriple=x86_64-linux -fast-isel -show-mc-encoding < %s | FileCheck %s2 3; CHECK-LABEL: f:4; CHECK:       addl $-2, %eax         # encoding: [0x83,0xc0,0xfe]5define i32 @f(ptr %y) {6  %x = load i32, ptr %y7  %dec = add i32 %x, -28  ret i32 %dec9}10