[llvm-commits] [llvm] r73090 - /llvm/trunk/test/TableGen/Slice.td
David Greene
greened at obbligato.org
Mon Jun 8 15:20:58 PDT 2009
Author: greened
Date: Mon Jun 8 17:20:58 2009
New Revision: 73090
URL: http://llvm.org/viewvc/llvm-project?rev=73090&view=rev
Log:
Fix DejaGNU run line to escape special characters.
Modified:
llvm/trunk/test/TableGen/Slice.td
Modified: llvm/trunk/test/TableGen/Slice.td
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/TableGen/Slice.td?rev=73090&r1=73089&r2=73090&view=diff
==============================================================================
--- llvm/trunk/test/TableGen/Slice.td (original)
+++ llvm/trunk/test/TableGen/Slice.td Mon Jun 8 17:20:58 2009
@@ -1,5 +1,5 @@
-// RUN: tblgen %s | grep {[(set VR128:$dst, (int_x86_sse2_add_pd VR128:$src1, VR128:$src2))]} | count 1
-// RUN: tblgen %s | grep {[(set VR128:$dst, (int_x86_sse2_add_ps VR128:$src1, VR128:$src2))]} | count 2
+// RUN: tblgen %s | grep {\\\[(set} | count 2
+// RUN: tblgen %s | grep {\\\[\\\]} | count 2
class ValueType<int size, int value> {
int Size = size;
More information about the llvm-commits
mailing list