forked from OSchip/llvm-project
[OCaml] Add more Llvm_target tests
Patch by Jacques-Pascal Deplaix llvm-svn: 210482
This commit is contained in:
parent
697bff9cb7
commit
a8de0de1fe
|
@ -46,7 +46,7 @@ let test_target_data () =
|
|||
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
|
||||
|
||||
|
||||
assert_equal (DL.as_string dl) layout;
|
||||
assert_equal (DL.byte_order dl) Endian.Little;
|
||||
assert_equal (DL.pointer_size dl) 4;
|
||||
|
@ -86,7 +86,8 @@ let test_target_machine () =
|
|||
assert_equal (TM.triple machine) (Target.default_triple ());
|
||||
assert_equal (TM.cpu machine) "";
|
||||
assert_equal (TM.features machine) "";
|
||||
ignore (TM.data_layout machine)
|
||||
ignore (TM.data_layout machine);
|
||||
TM.set_verbose_asm true machine
|
||||
|
||||
|
||||
(*===-- Code Emission -----------------------------------------------------===*)
|
||||
|
|
Loading…
Reference in New Issue