<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -9,9 +9,8 @@ interact with the native Ruby 1.8/1.9 data types.
 
 * How to build
 
-You must get LLVM from svn and build it separately:
-
-  $ svn co http://llvm.org/svn/llvm-project/llvm/trunk llvm 
+Get LLVM 2.4 from http://llvm.org/releases/2.4/llvm-2.4.tar.gz and 
+build it separately following their instructions.
 
 Make sure that you configure LLVM with PIC enabled:
   
@@ -37,11 +36,6 @@ load path.
 
 * Caveats
 
-I created this using very latest LLVM (from svn, soon to be 2.4).  Other 
-versions may not work.  I have been trying to get the 2.3 released package 
-to work, only one conditional typedef is required, but it complaining about 
-fPIC stuff :(
-
 I primarily develop this on my home machine which is 64bit Fedora.  I 
 occasionally test it on a 32bit CentOS machine, and recently tested it 
 on a 32bit MacBook.  It built and passed tests with no issues.  My</diff>
      <filename>README</filename>
    </modified>
    <modified>
      <diff>@@ -331,7 +331,7 @@ class BasicTests &lt; Test::Unit::TestCase
   end
   
   def test_type_to_s
-    assert_equal &quot;i32&quot;, 2.llvm.type.to_s
+    assert_equal &quot;i32&quot;, 2.llvm(Type::Int32Ty).type.to_s
   end
 
   def test_type_type_id</diff>
      <filename>test/test_basic.rb</filename>
    </modified>
    <modified>
      <diff>@@ -50,7 +50,7 @@ class UserTests &lt; Test::Unit::TestCase
   def test_set_operand
     ins_before = @ins[0].inspect
     assert_match(/\%tmp3 = shl i32 \%x, 24/, ins_before)
-    @ins[0].set_operand(0,42.llvm)
+    @ins[0].set_operand(0,42.llvm(Type::Int32Ty))
     ins_after = @ins[0].inspect
     assert_match(/\%tmp3 = shl i32 42, 24/, ins_after)
   end
@@ -63,7 +63,7 @@ class UserTests &lt; Test::Unit::TestCase
   def test_replace_uses_of_with
     ins_before = @ins[0].inspect
     assert_match(/\%tmp3 = shl i32 \%x, 24/, ins_before)
-    @ins[0].replace_uses_of_with(24.llvm,1234.llvm)
+    @ins[0].replace_uses_of_with(24.llvm(Type::Int32Ty),1234.llvm(Type::Int32Ty))
     ins_after = @ins[0].inspect
     assert_match(/\%tmp3 = shl i32 \%x, 1234/, ins_after)
   end</diff>
      <filename>test/test_user.rb</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>7d99b2108d368c245ca08c0ad0e3e06cf23d7814</id>
    </parent>
  </parents>
  <author>
    <name>Tom Bagby</name>
    <email>tbagby@kosmix.com</email>
  </author>
  <url>http://github.com/tombagby/llvmruby/commit/e829dc87abd204a47f02d9ea3a45213fed17764a</url>
  <id>e829dc87abd204a47f02d9ea3a45213fed17764a</id>
  <committed-date>2008-12-24T14:35:41-08:00</committed-date>
  <authored-date>2008-12-24T14:35:41-08:00</authored-date>
  <message>merge plessl changes, update to llvm 2.4, fix tests for 64 bit platforms, updated README</message>
  <tree>a28be8d0958da8849f00ff5f4a46baaa0934126d</tree>
  <committer>
    <name>Tom Bagby</name>
    <email>tbagby@kosmix.com</email>
  </committer>
</commit>
