aboutsummaryrefslogtreecommitdiffstats
path: root/test/Bindings/Ocaml
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2009-02-11 20:48:21 +0000
committerDaniel Dunbar <daniel@zuster.org>2009-02-11 20:48:21 +0000
commitdce5e74162e7ad16dc787057941a7b9147a70117 (patch)
tree32dca53b7e8096ed981d1334e76e588617c9aa8e /test/Bindings/Ocaml
parentcc994ea36bd6f501334d8be4219fc23caff025d9 (diff)
downloadexternal_llvm-dce5e74162e7ad16dc787057941a7b9147a70117.zip
external_llvm-dce5e74162e7ad16dc787057941a7b9147a70117.tar.gz
external_llvm-dce5e74162e7ad16dc787057941a7b9147a70117.tar.bz2
Update to match space changes in .ll
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@64322 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Bindings/Ocaml')
-rw-r--r--test/Bindings/Ocaml/vmcore.ml4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Bindings/Ocaml/vmcore.ml b/test/Bindings/Ocaml/vmcore.ml
index e8fa1b5..e3c7ffd 100644
--- a/test/Bindings/Ocaml/vmcore.ml
+++ b/test/Bindings/Ocaml/vmcore.ml
@@ -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;