1
0
Fork 0

Add compiler testing for always_inline attribute

Add compiler testing for fastcall attribute
Add the FASTCALL define to visual c
Remove some overkill inline routines
Make sure that all the inline routines in headers are static


Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@3355
This commit is contained in:
Sjoerd van der Berg 2009-04-25 16:25:03 +00:00
parent 5f6236ee35
commit 88caf1dc71
20 changed files with 182 additions and 147 deletions

View file

@ -93,20 +93,20 @@ struct CPU_Regs {
extern Segments Segs;
extern CPU_Regs cpu_regs;
INLINE PhysPt SegPhys(SegNames index) {
static INLINE PhysPt SegPhys(SegNames index) {
return Segs.phys[index];
}
INLINE Bit16u SegValue(SegNames index) {
static INLINE Bit16u SegValue(SegNames index) {
return (Bit16u)Segs.val[index];
}
INLINE RealPt RealMakeSeg(SegNames index,Bit16u off) {
static INLINE RealPt RealMakeSeg(SegNames index,Bit16u off) {
return RealMake(SegValue(index),off);
}
INLINE void SegSet16(Bitu index,Bit16u val) {
static INLINE void SegSet16(Bitu index,Bit16u val) {
Segs.val[index]=val;
Segs.phys[index]=val << 4;
}