diff options
author | Chris Lattner <sabre@nondot.org> | 2005-08-21 16:37:36 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2005-08-21 16:37:36 +0000 |
commit | 2cfd128becb373451405fc9838ed799e5012808f (patch) | |
tree | 20a4c6be030d120d6402cf0b31d0314f4f2bbdaf | |
parent | 7340dd5d2ef9a560e1152bd2ca4bb1cb67858edd (diff) |
Fix a bug in the RUN line
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@22945 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/CodeGen/X86/shift-double.llx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CodeGen/X86/shift-double.llx b/test/CodeGen/X86/shift-double.llx index 8e11a30ead..4235edebda 100644 --- a/test/CodeGen/X86/shift-double.llx +++ b/test/CodeGen/X86/shift-double.llx @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s | llc -march=x86 -x86-asm-syntax=intel grep sh[lr]d | wc -l | grep 5 +; RUN: llvm-as < %s | llc -march=x86 -x86-asm-syntax=intel | grep sh[lr]d | wc -l | grep 5 long %test1(long %X, ubyte %C) { %Y = shl long %X, ubyte %C |