diff options
Diffstat (limited to 'src/comp/front')
| -rw-r--r-- | src/comp/front/parser.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/comp/front/parser.rs b/src/comp/front/parser.rs index 904efc2e..b886e8ae 100644 --- a/src/comp/front/parser.rs +++ b/src/comp/front/parser.rs @@ -2013,7 +2013,7 @@ fn parse_item_native_mod(parser p) -> @ast.item { if (_str.eq(t, "cdecl")) { } else if (_str.eq(t, "rust")) { abi = ast.native_abi_rust; - } else if (_str.eq(t, "llvm-intrinsic")) { + } else if (_str.eq(t, "llvm")) { abi = ast.native_abi_llvm; } else { p.err("unsupported abi: " + t); |