repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git]
/
llvm
/
test
/
CodeGen
/
Mips
/
addc.ll
blob
6877b3b633ce0daa23f2338285a43161b839f19e
1
; RUN: llc < %s -march=mipsel | FileCheck %s
2
; RUN: llc < %s -march=mips | FileCheck %s
3
4
define void @f(i64 %l, ptr nocapture %p) nounwind {
5
entry:
6
; CHECK: lui
7
; CHECK: ori
8
; CHECK: addu
9
%add = add i64 %l, 1311768467294899695
10
store i64 %add, ptr %p, align 4
11
ret void
12
}
13