mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-21 03:32:21 +00:00
recognize llvm.prefetch. Patch contributed by Justin Wick!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@20377 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
6f72282e02
commit
edac2d1a80
@ -253,6 +253,9 @@ unsigned Function::getIntrinsicID() const {
|
||||
if (getName() == "llvm.memmove") return Intrinsic::memmove;
|
||||
if (getName() == "llvm.memset") return Intrinsic::memset;
|
||||
break;
|
||||
case 'p':
|
||||
if (getName() == "llvm.prefetch") return Intrinsic::prefetch;
|
||||
break;
|
||||
case 'r':
|
||||
if (getName() == "llvm.returnaddress") return Intrinsic::returnaddress;
|
||||
if (getName() == "llvm.readport") return Intrinsic::readport;
|
||||
|
Loading…
x
Reference in New Issue
Block a user