Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
core
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ç
LibreOffice
core
Commits
ee6fcdd1
Kaydet (Commit)
ee6fcdd1
authored
Agu 22, 2014
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Related: rhbz#1125588 ppc64le fix simple struct returning
Change-Id: I1e253922fdb606648eff9865f1125a24e35b0d9a
üst
9a6d1c6e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
+6
-2
uno2cpp.cxx
bridges/source/cpp_uno/gcc3_linux_powerpc64/uno2cpp.cxx
+6
-2
No files found.
bridges/source/cpp_uno/gcc3_linux_powerpc64/uno2cpp.cxx
Dosyayı görüntüle @
ee6fcdd1
...
@@ -305,14 +305,18 @@ static void cpp_call(
...
@@ -305,14 +305,18 @@ static void cpp_call(
void
*
pCppReturn
=
0
;
// if != 0 && != pUnoReturn, needs reconversion
void
*
pCppReturn
=
0
;
// if != 0 && != pUnoReturn, needs reconversion
bool
bOverflow
=
false
;
bool
bOverflow
=
false
;
bool
bSimpleReturn
=
true
;
if
(
pReturnTypeDescr
)
if
(
pReturnTypeDescr
)
{
{
#if OSL_DEBUG_LEVEL > 2
#if OSL_DEBUG_LEVEL > 2
fprintf
(
stderr
,
"return type is %d
\n
"
,
pReturnTypeDescr
->
eTypeClass
);
fprintf
(
stderr
,
"return type is %d
\n
"
,
pReturnTypeDescr
->
eTypeClass
);
#endif
#endif
if
(
bridges
::
cpp_uno
::
shared
::
isSimpleType
(
pReturnTypeDescr
))
if
(
ppc64
::
return_in_hidden_param
(
pReturnTypeRef
))
bSimpleReturn
=
false
;
if
(
bSimpleReturn
)
{
{
pCppReturn
=
pUnoReturn
;
// direct way for simple types
pCppReturn
=
pUnoReturn
;
// direct way for simple types
#if OSL_DEBUG_LEVEL > 2
#if OSL_DEBUG_LEVEL > 2
...
...
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