Daily bump.
[official-gcc.git] / gcc / rust / util / rust-abi.h
bloba0180ed4d951b5a9d7134028911e52b9eb468ab5
1 // This file is part of GCC.
3 // GCC is free software; you can redistribute it and/or modify it under
4 // the terms of the GNU General Public License as published by the Free
5 // Software Foundation; either version 3, or (at your option) any later
6 // version.
8 // GCC is distributed in the hope that it will be useful, but WITHOUT ANY
9 // WARRANTY; without even the implied warranty of MERCHANTABILITY or
10 // FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
11 // for more details.
13 // You should have received a copy of the GNU General Public License
14 // along with GCC; see the file COPYING3. If not see
15 // <http://www.gnu.org/licenses/>.
17 #ifndef RUST_ABI_OPTIONS_H
18 #define RUST_ABI_OPTIONS_H
20 #include "rust-system.h"
22 namespace Rust {
24 enum ABI
26 UNKNOWN,
27 RUST,
28 INTRINSIC,
30 CDECL,
31 STDCALL,
32 FASTCALL,
33 WIN_64,
34 SYSV64
37 extern Rust::ABI
38 get_abi_from_string (const std::string &abi);
40 extern std::string
41 get_string_from_abi (Rust::ABI abi);
43 } // namespace Rust
45 #endif // RUST_ABI_OPTIONS_H