1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-22 04:22:57 +02:00

[tests] Add a hack to eliminate some dangling .s files on buildbots.

- Benjamin fixed the emission of this file in r179937, but it still lives on a
   few buildbots. We should probably clean up the build dirs once in a while,
   eh?

llvm-svn: 188527
This commit is contained in:
Daniel Dunbar 2013-08-16 02:54:00 +00:00
parent 333625bd77
commit 13fbfa523f

View File

@ -1,4 +1,12 @@
; REQUIRES: asserts
;
; FIXME: The following line is a hack to remove any stray files which might have
; been left dangling around by this test. It can be removed once the various
; bots have cycled past this commit.
;
; RUN: rm -f misched-copy.s
;
;
; RUN: llc < %s -march=x86 -mcpu=core2 -pre-RA-sched=source -enable-misched -verify-misched -debug-only=misched -o - 2>&1 > /dev/null | FileCheck %s
;
; Test scheduling of copy instructions.