diff options
| author | Graydon Hoare <[email protected]> | 2010-06-25 01:30:23 -0700 |
|---|---|---|
| committer | Graydon Hoare <[email protected]> | 2010-06-25 01:33:00 -0700 |
| commit | 5dfe101e5197d6854aa1d8c9907ac7851468d468 (patch) | |
| tree | bc79379b40692defb68469bd7af78c1d67901de8 /src/boot/util | |
| parent | Sketch out gc glue. (diff) | |
| download | rust-5dfe101e5197d6854aa1d8c9907ac7851468d468.tar.xz rust-5dfe101e5197d6854aa1d8c9907ac7851468d468.zip | |
Revert "Add intrinsic calling convention." Isn't going to work.
This reverts commit 72c6c60d80cdfe63af5046a1a98549f0515734f2.
Diffstat (limited to 'src/boot/util')
| -rw-r--r-- | src/boot/util/common.ml | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/boot/util/common.ml b/src/boot/util/common.ml index ad784877..f33a6ea1 100644 --- a/src/boot/util/common.ml +++ b/src/boot/util/common.ml @@ -105,7 +105,6 @@ type ty_param_idx = int type nabi_conv = CONV_rust | CONV_cdecl - | CONV_intrinsic ;; type nabi = { nabi_indirect: bool; @@ -116,7 +115,6 @@ let string_to_conv (a:string) : nabi_conv option = match a with "cdecl" -> Some CONV_cdecl | "rust" -> Some CONV_rust - | "intrinsic" -> Some CONV_intrinsic | _ -> None (* FIXME: remove this when native items go away. *) |