mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-10 02:36:06 +00:00
Add nounwind.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@100482 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
18ac410f4f
commit
da72249ecb
@ -2,13 +2,13 @@
|
||||
|
||||
declare void @llvm.memcpy.i64(i8*, i8*, i64, i32)
|
||||
|
||||
define i8* @my_memcpy(i8* %a, i8* %b, i64 %n) {
|
||||
define i8* @my_memcpy(i8* %a, i8* %b, i64 %n) nounwind {
|
||||
entry:
|
||||
tail call void @llvm.memcpy.i64( i8* %a, i8* %b, i64 %n, i32 1 )
|
||||
ret i8* %a
|
||||
}
|
||||
|
||||
define i8* @my_memcpy2(i64* %a, i64* %b, i64 %n) {
|
||||
define i8* @my_memcpy2(i64* %a, i64* %b, i64 %n) nounwind {
|
||||
entry:
|
||||
%tmp14 = bitcast i64* %a to i8*
|
||||
%tmp25 = bitcast i64* %b to i8*
|
||||
|
Loading…
x
Reference in New Issue
Block a user