repo.or.cz
/
llvm
/
msp430.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge branch 'master' into msp430
[llvm/msp430.git]
/
test
/
CodeGen
/
Generic
/
2006-11-06-MemIntrinsicExpand.ll
blob
a773759f36ea96452a3b81e5bee2383e47842e1a
1
; RUN: llvm-as < %s | llc -march=x86 | not grep adc
2
; PR987
3
4
declare void @llvm.memcpy.i64(i8*, i8*, i64, i32)
5
6
define void @foo(i64 %a) {
7
%b = add i64 %a, 1 ; <i64> [#uses=1]
8
call void @llvm.memcpy.i64( i8* null, i8* null, i64 %b, i32 1 )
9
ret void
10
}
11