Update the ML test to expect the new string format of getStringRepresentation.
authorRafael Espindola <rafael.espindola@gmail.com>
Thu, 19 Dec 2013 23:38:09 +0000 (23:38 +0000)
committerRafael Espindola <rafael.espindola@gmail.com>
Thu, 19 Dec 2013 23:38:09 +0000 (23:38 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@197750 91177308-0d34-0410-b5e6-96231b3b80d8

test/Bindings/Ocaml/target.ml

index d69fb0e664fdb8ad23f1e399ec8dcb6186ea61d7..26cd12939d1e007300edaa3528a2d6ac8b0b818e 100644 (file)
@@ -43,9 +43,7 @@ let machine = TargetMachine.create (Target.default_triple ()) target
 
 let test_target_data () =
   let module DL = DataLayout in
-  let layout = "e-p:32:32:32-S32-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:32:64-" ^
-               "f16:16:16-f32:32:32-f64:32:64-f128:128:128-v64:32:64-v128:32:128-" ^
-               "a0:0:64-n32" in
+  let layout = "e-p:32:32-f64:32:64-v64:32:64-v128:32:128-n32-S32" in
   let dl     = DL.of_string layout in
   let sty    = struct_type context [| i32_type; i64_type |] in