mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-12 07:41:14 +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. llvm-svn: 277624
11 lines
221 B
LLVM
11 lines
221 B
LLVM
; RUN: llc -verify-machineinstrs < %s -march=ppc32
|
|
|
|
@g = external global ppc_fp128
|
|
@h = external global ppc_fp128
|
|
|
|
define void @f() {
|
|
%tmp = load ppc_fp128, ppc_fp128* @g
|
|
store ppc_fp128 %tmp, ppc_fp128* @h
|
|
ret void
|
|
}
|