blob: e5d05b1d6dbb84572ba742d7bbf8fae51b68af44 [file] [log] [blame]
Bruno Cardoso Lopes842db072011-03-09 21:05:32 +00001; RUN: llc < %s -march=mipsel | FileCheck %s
2; RUN: llc < %s -march=mips | FileCheck %s
3
4define void @f(i64 %l, i64* nocapture %p) nounwind {
5entry:
6; CHECK: lui
7; CHECK: ori
8; CHECK: addu
9 %add = add i64 %l, 1311768467294899695
10 store i64 %add, i64* %p, align 4
11 ret void
12}
13