1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 20:51:52 +01:00

fix test to use FileCheck

llvm-svn: 260751
This commit is contained in:
Sanjay Patel 2016-02-12 22:07:54 +00:00
parent 6f279569a2
commit 9507ea18eb

View File

@ -1,8 +1,11 @@
; RUN: llc < %s -march=x86 -mattr=+sse2 | not grep sfence
; RUN: llc < %s -march=x86 -mattr=+sse2 | not grep lfence
; RUN: llc < %s -march=x86 -mattr=+sse2 | grep mfence
; RUN: llc < %s -mtriple=i386-unknown-unknown -mattr=+sse2 | FileCheck %s
define void @test() {
; CHECK-LABEL: test:
; CHECK: # BB#0:
; CHECK-NEXT: mfence
; CHECK-NEXT: retl
fence seq_cst
ret void
}