We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7034a4f commit cd81f81Copy full SHA for cd81f81
src/lib.rs
@@ -1511,7 +1511,9 @@ impl<'a> Serializer<'a> {
1511
CallingConv::Cdecl => {
1512
write!(self.w, "__cdecl ")?;
1513
}
1514
- CallingConv::Pascal => {}
+ CallingConv::Pascal => {
1515
+ write!(self.w, "__pascal ")?;
1516
+ }
1517
CallingConv::Thiscall => {
1518
write!(self.w, "__thiscall ")?;
1519
tests/llvm-cases/unused/ms-windows.test renamed to tests/llvm-cases/ms-windows.test
tests/test_llvm.rs
@@ -107,3 +107,8 @@ fn test_llvm_ms_basic() {
107
fn test_llvm_ms_operators() {
108
llvm_test!("llvm-cases/ms-operators.test");
109
110
+
111
+#[test]
112
+fn test_llvm_ms_windows() {
113
+ llvm_test!("llvm-cases/ms-windows.test");
114
+}
0 commit comments