1
Fork 0

Add mod common to rustc.

This commit is contained in:
Graydon Hoare 2010-08-18 11:34:47 -07:00
parent b5ad78f316
commit 49f668dff3
2 changed files with 19 additions and 0 deletions

View file

@ -13,6 +13,10 @@ mod driver {
mod rustc;
}
mod util {
mod common;
}
auth driver = unsafe;
mod lib {

15
src/comp/util/common.rs Normal file
View file

@ -0,0 +1,15 @@
type ty_mach = tag( ty_i8(), ty_i16(), ty_i32(), ty_i64(),
ty_u8(), ty_u16(), ty_u32(), ty_u64(),
ty_f32(), ty_f16() );
//
// Local Variables:
// mode: rust
// fill-column: 78;
// indent-tabs-mode: nil
// c-basic-offset: 4
// buffer-file-coding-system: utf-8-unix
// compile-command: "make -k -C ../.. 2>&1 | sed -e 's/\\/x\\//x:\\//g'";
// End:
//