1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-02-01 13:11:39 +01:00

[X86] Remove stress-scheduledagrrlist.ll.

This test seems to take quite a long time with EXPENSIVE_CHECKS.

Remove it.
This commit is contained in:
Florian Hahn 2020-07-25 15:45:24 +01:00
parent 23a372d0f2
commit 2f84723455

View File

@ -1,12 +0,0 @@
; RUN: llc -O0 -mtriple=x86_64-apple-macosx %s -o %t.s
; Stress test for the list scheduler. The store will be expanded to a very
; large number of stores during isel, stressing ScheduleDAGRRList. It should
; compiles in a reasonable amount of time. Run with -O0, to disable most other
; optimizations.
define void @test(i1000000* %ptr) {
entry:
store i1000000 0, i1000000* %ptr, align 4
ret void
}