Files
clang-p2996/llvm/test/CodeGen/Mips/addc.ll
2022-12-19 12:56:12 +01:00

14 lines
287 B
LLVM

; RUN: llc < %s -march=mipsel | FileCheck %s
; RUN: llc < %s -march=mips | FileCheck %s
define void @f(i64 %l, ptr nocapture %p) nounwind {
entry:
; CHECK: lui
; CHECK: ori
; CHECK: addu
%add = add i64 %l, 1311768467294899695
store i64 %add, ptr %p, align 4
ret void
}