Don't use string == in x86.rs, doesn't work.

This commit is contained in:
Graydon Hoare 2010-10-22 17:27:22 -07:00
parent cb254f3558
commit e5229b97d7

View File

@ -131,7 +131,7 @@ fn get_module_asm() -> str {
auto align = 4;
auto prefix = "";
if (target_os() == "macos") {
if (_str.eq(target_os(), "macos")) {
prefix = "_";
}