Fangrui Song ae26f50aea [test] Change llc -march=mips* to -mtriple=mips*
Similar to 806761a7629df268c8aed49657aeccffa6bca449
2024-12-10 22:14:06 -08:00

14 lines
291 B
LLVM

; RUN: llc < %s -mtriple=mipsel | FileCheck %s
; RUN: llc < %s -mtriple=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
}