repo.or.cz
/
llvm
/
stm8.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
This should always be signed chars, so use int8_t. This fixes a miscompile when
[llvm/stm8.git]
/
test
/
CodeGen
/
Mips
/
addc.ll
blob
e5d05b1d6dbb84572ba742d7bbf8fae51b68af44
1
; RUN: llc < %s -march=mipsel | FileCheck %s
2
; RUN: llc < %s -march=mips | FileCheck %s
3
4
define void @f(i64 %l, i64* nocapture %p) nounwind {
5
entry:
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