rustc: "tag" -> "enum"

This commit is contained in:
Patrick Walton 2012-01-19 14:24:03 -08:00
parent e6a7383a5f
commit bdb8f6cf52
37 changed files with 183 additions and 183 deletions

View file

@ -10,11 +10,11 @@ import util::filesearch;
import back::target_strs;
import middle::lint;
tag os { os_win32; os_macos; os_linux; os_freebsd; }
enum os { os_win32; os_macos; os_linux; os_freebsd; }
tag arch { arch_x86; arch_x86_64; arch_arm; }
enum arch { arch_x86; arch_x86_64; arch_arm; }
tag crate_type { bin_crate; lib_crate; unknown_crate; }
enum crate_type { bin_crate; lib_crate; unknown_crate; }
type config =
{os: os,