mirror of
https://github.com/RPCSX/llvm.git
synced 2025-02-10 14:36:01 +00:00
![Ehsan Amiri](/assets/img/avatar_default.png)
Currently we have a number of tests that fail with -verify-machineinstrs. To detect this cases earlier we add the option to the testcases with the exception of tests that will currently fail with this option. PR 27456 keeps track of this failures. No code review, as discussed with Hal Finkel. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@277624 91177308-0d34-0410-b5e6-96231b3b80d8
18 lines
431 B
LLVM
18 lines
431 B
LLVM
; RUN: llc -verify-machineinstrs -mtriple powerpc64-linux < %s | FileCheck %s
|
|
; RUN: llc -verify-machineinstrs -O0 -mtriple powerpc64-linux < %s | FileCheck %s
|
|
|
|
define void @foo() {
|
|
ret void
|
|
}
|
|
declare i32 @bar(i8*)
|
|
|
|
; CHECK-LABEL: {{^}}zed:
|
|
; CHECK: addis 3, 2, foo@toc@ha
|
|
; CHECK-NEXT: addi 3, 3, foo@toc@l
|
|
; CHECK-NEXT: bl bar
|
|
|
|
define void @zed() {
|
|
call i32 @bar(i8* bitcast (void ()* @foo to i8*))
|
|
ret void
|
|
}
|