mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-25 13:24:46 +00:00
ARM: remove @llvm.arm.sevl
This intrinsic is no longer needed with the new @llvm.arm.hint(i32) intrinsic which provides a generic, extensible manner for adding hint instructions. This functionality can now be represented as @llvm.arm.hint(i32 5). git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@207246 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -10,10 +10,10 @@ define void @test() {
|
||||
; CHECK: dsb ishld
|
||||
call void @llvm.arm.dsb(i32 9)
|
||||
; CHECK: sevl
|
||||
tail call void @llvm.arm.sevl() nounwind
|
||||
tail call void @llvm.arm.hint(i32 5) nounwind
|
||||
ret void
|
||||
}
|
||||
|
||||
declare void @llvm.arm.dmb(i32)
|
||||
declare void @llvm.arm.dsb(i32)
|
||||
declare void @llvm.arm.sevl() nounwind
|
||||
declare void @llvm.arm.hint(i32) nounwind
|
||||
|
Reference in New Issue
Block a user