diff options
author | NAKAMURA Takumi <geek4civic@gmail.com> | 2010-12-29 03:58:36 +0000 |
---|---|---|
committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2010-12-29 03:58:36 +0000 |
commit | a9eb1632611d5024a7ae259ee7cba576c1499c5a (patch) | |
tree | 441e4a6e51b3acfa4495e04410d28514dc16d87b | |
parent | 480b80a74648c9ea93b9a8986f9ca6a9de536abc (diff) | |
download | external_llvm-a9eb1632611d5024a7ae259ee7cba576c1499c5a.zip external_llvm-a9eb1632611d5024a7ae259ee7cba576c1499c5a.tar.gz external_llvm-a9eb1632611d5024a7ae259ee7cba576c1499c5a.tar.bz2 |
test/CodeGen/X86/fp-in-intregs.ll: FileCheck-ize.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@122618 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/CodeGen/X86/fp-in-intregs.ll | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/CodeGen/X86/fp-in-intregs.ll b/test/CodeGen/X86/fp-in-intregs.ll index 08ea77d..6966cf0 100644 --- a/test/CodeGen/X86/fp-in-intregs.ll +++ b/test/CodeGen/X86/fp-in-intregs.ll @@ -1,4 +1,5 @@ -; RUN: llc < %s -march=x86 -mcpu=yonah | not egrep {\(\(xor\|and\)ps\|movd\)} +; RUN: llc < %s -march=x86 -mcpu=yonah | FileCheck %s +; CHECK-NOT: {{((xor|and)ps|movd)}} ; These operations should be done in integer registers, eliminating constant ; pool loads, movd's etc. |