[llvm-commits] [llvm] r64322 - /llvm/trunk/test/Bindings/Ocaml/vmcore.ml

Daniel Dunbar daniel at zuster.org
Wed Feb 11 12:48:21 PST 2009


Author: ddunbar
Date: Wed Feb 11 14:48:21 2009
New Revision: 64322

URL: http://llvm.org/viewvc/llvm-project?rev=64322&view=rev
Log:
Update to match space changes in .ll

Modified:
    llvm/trunk/test/Bindings/Ocaml/vmcore.ml

Modified: llvm/trunk/test/Bindings/Ocaml/vmcore.ml
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Bindings/Ocaml/vmcore.ml?rev=64322&r1=64321&r2=64322&view=diff

==============================================================================
--- llvm/trunk/test/Bindings/Ocaml/vmcore.ml (original)
+++ llvm/trunk/test/Bindings/Ocaml/vmcore.ml Wed Feb 11 14:48:21 2009
@@ -244,14 +244,14 @@
   let three = const_int i32_type 3 in
   let four = const_int i32_type 4 in
   
-  (* RUN: grep {Const07.*\\\[ i32 3, i32 4 \\\]} < %t.ll
+  (* RUN: grep {Const07.*\\\[i32 3, i32 4\\\]} < %t.ll
    *)
   group "array";
   let c = const_array i32_type [| three; four |] in
   ignore (define_global "Const07" c m);
   insist ((array_type i32_type 2) = (type_of c));
   
-  (* RUN: grep {Const08.*< i16 1, i16 2.* >} < %t.ll
+  (* RUN: grep {Const08.*<i16 1, i16 2.*>} < %t.ll
    *)
   group "vector";
   let c = const_vector [| one; two; one; two;





More information about the llvm-commits mailing list