1. 03 3月, 2011 1 次提交
  2. 02 3月, 2011 12 次提交
  3. 01 3月, 2011 6 次提交
  4. 28 2月, 2011 1 次提交
    • R
      Update the function declarations with rust abi. A cdecl · 4ac4d03f
      Rafael Ávila de Espíndola 提交于
      fn write(int fd, rustrt.vbuf buf, uint count) -> int;
      
      compiles to
      
      declare i32 @write(i32, i8*, i32)
      
      and a rust
      
      fn vec_buf[T](vec[T] v, uint offset) -> vbuf;
      
      compiles to
      
      declare i8* @vec_buf(%task*, %tydesc*, %"vec[<P0:2>]", i32)
      
      which I think is the correct declaration for both :-)
      4ac4d03f
  5. 26 2月, 2011 14 次提交
  6. 25 2月, 2011 6 次提交