Update to match space changes in .ll
authorDaniel Dunbar <daniel@zuster.org>
Wed, 11 Feb 2009 20:48:21 +0000 (20:48 +0000)
committerDaniel Dunbar <daniel@zuster.org>
Wed, 11 Feb 2009 20:48:21 +0000 (20:48 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@64322 91177308-0d34-0410-b5e6-96231b3b80d8

test/Bindings/Ocaml/vmcore.ml

index e8fa1b5692df1eb574d37815ffac9af1adc4748e..e3c7ffd780322f93b9c5f2a4b64cd92199d17d4c 100644 (file)
@@ -244,14 +244,14 @@ let test_constants () =
   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;