Skip to content
  1. Sep 20, 2007
  2. Sep 19, 2007
  3. Sep 18, 2007
    • Evan Cheng's avatar
      Fix a bogus splat xform: · e2e8f2d9
      Evan Cheng authored
      shuffle <undef, undef, x, undef>, <undef, undef, undef, undef>, <2, 2, 2, 2>
      !=
      <undef, undef, x, undef>
      
      llvm-svn: 42111
      e2e8f2d9
    • Gabor Greif's avatar
      rename test, it is obviously misspelled · 49122edc
      Gabor Greif authored
      llvm-svn: 42108
      49122edc
    • Gordon Henriksen's avatar
      Tests of the ocaml (and thus C) bindings for constants. · dc88c067
      Gordon Henriksen authored
      llvm-svn: 42101
      dc88c067
    • Gordon Henriksen's avatar
      Adding ocaml language bindings for the vmcore and bitwriter libraries. These are · 37582f74
      Gordon Henriksen authored
      built atop the C language bindings, and user programs can link with them as 
      such:
      
        # Bytecode
        ocamlc -cc g++ llvm.cma llvmbitwriter.cma -o example example.ml
        # Native
        ocamlopt -cc g++ llvm.cmxa llvmbitwriter.cmxa -o example.opt example.ml
      
      The vmcore.ml test exercises most/all of the APIs thus far bound. Unfortunately,
      they're not yet numerous enough to write hello world. But:
      
        $ cat example.ml
        (* example.ml *)
        
        open Llvm
        open Llvm_bitwriter
        
        let _ =
          let filename = Sys.argv.(1) in
          let m = create_module filename in
          
          let v = make_int_constant i32_type 42 false in
          let g = define_global "hello_world" v m in
          
          if not (write_bitcode_file m filename) then exit 1;
          
          dispose_module m;
      
        $ ocamlc -cc g++ llvm.cma llvm_bitwriter.cma -o example example.ml
        File "example.ml", line 11, characters 6-7:
        Warning Y: unused variable g.
        $ ./example example.bc
        $ llvm-dis < example.bc
        ; ModuleID = '<stdin>'
        @hello_world = global i32 42            ; <i32*> [#uses=0]
      
      The ocaml test cases provide effective tests for the C interfaces.
      
      llvm-svn: 42093
      37582f74
    • Gordon Henriksen's avatar
      (no commit message) · 5c4d7b80
      Gordon Henriksen authored
      llvm-svn: 42090
      5c4d7b80
    • Devang Patel's avatar
      Fix PR1657 · fcda998a
      Devang Patel authored
      llvm-svn: 42075
      fcda998a
    • Bill Wendling's avatar
      Objective-C was generating EH frame info like this: · 067f1d8e
      Bill Wendling authored
      "_-[NSString(local) isNullOrNil]".eh = 0
              .no_dead_strip  "_-[NSString(local) isNullOrNil]".eh
      
      The ".eh" should be inside the quotes.
      
      llvm-svn: 42074
      067f1d8e
  4. Sep 17, 2007
  5. Sep 15, 2007
  6. Sep 14, 2007
  7. Sep 13, 2007
  8. Sep 12, 2007
  9. Sep 11, 2007
  10. Sep 10, 2007
  11. Sep 08, 2007
  12. Sep 07, 2007
Loading