Skip to content

Commit 84a88ca

Browse files
committed
Fix LINK enum on C++ side
1 parent e1885e7 commit 84a88ca

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

dmd/globals.h

-1
Original file line numberDiff line numberDiff line change
@@ -454,7 +454,6 @@ enum class LINK : uint8_t
454454
c,
455455
cpp,
456456
windows,
457-
pascal,
458457
objc,
459458
system
460459
};

gen/abi-x86.cpp

-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,6 @@ struct X86TargetABI : TargetABI {
4949
: llvm::CallingConv::C;
5050
case LINK::d:
5151
case LINK::default_:
52-
case LINK::pascal:
5352
case LINK::windows:
5453
return llvm::CallingConv::X86_StdCall;
5554
default:

0 commit comments

Comments
 (0)