Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
7d8b5095
Kaydet (Commit)
7d8b5095
authored
Eyl 10, 1991
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Added work-arounds for MPW 3.{1,2?} code generation bug.
üst
e3db862e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
0 deletions
+17
-0
acceler.c
Parser/acceler.c
+17
-0
No files found.
Parser/acceler.c
Dosyayı görüntüle @
7d8b5095
...
...
@@ -104,10 +104,27 @@ fixstate(g, d, s)
}
for
(
ibit
=
0
;
ibit
<
g
->
g_ll
.
ll_nlabels
;
ibit
++
)
{
if
(
testbit
(
d1
->
d_first
,
ibit
))
{
#ifdef applec
#define MPW_881_bug
/* Undefine if bug below is fixed */
#endif
#ifdef MPW_881_BUG
/* In 881 mode MPW 3.1 has a code
generation bug which seems to
set the upper bits; fix this by
explicitly masking them off */
int
temp
;
#endif
if
(
accel
[
ibit
]
!=
-
1
)
printf
(
"XXX ambiguity!
\n
"
);
#ifdef MPW_881_BUG
temp
=
0xFFFF
&
(
a
->
a_arrow
|
(
1
<<
7
)
|
((
type
-
NT_OFFSET
)
<<
8
));
accel
[
ibit
]
=
temp
;
#else
accel
[
ibit
]
=
a
->
a_arrow
|
(
1
<<
7
)
|
((
type
-
NT_OFFSET
)
<<
8
);
#endif
}
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment