Does a C shift expression have unsigned type? Why would Splint warn about a right-shift? Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 23, 2019 at 00:00UTC (8:00pm US/Eastern) Data science time! April 2019 and salary with experience The Ask Question Wizard is Live!Why doesn't C have unsigned floats?Why does left shift operation invoke Undefined Behaviour when the left side operand has negative value?Is left-shifting a signed integer undefined behavior in C++03?Efficient unsigned-to-signed cast avoiding implementation-defined behaviorWhy is unsigned integer overflow defined behavior but signed integer overflow isn't?Why would the outcome of this shift left operation be deemed undefined?Arithmetic right-shift of signed integerWhy left shift of a negative signed value is not well-defined behavior?Is 1 << 31 well defined in C when sizeof(int) == 4Is “-1>>5;” unspecified behavior in C?

Is there hard evidence that the grant peer review system performs significantly better than random?

Illegal assignment from sObject to Id

What was the first language to use conditional keywords?

Do any jurisdictions seriously consider reclassifying social media websites as publishers?

How can I reduce the gap between left and right of cdot with a macro?

Why do we need to use the builder design pattern when we can do the same thing with setters?

Is it possible for SQL statements to execute concurrently within a single session in SQL Server?

Should I use a zero-interest credit card for a large one-time purchase?

Time to Settle Down!

What initially awakened the Balrog?

What is "gratricide"?

Is there any word for a place full of confusion?

Why is Nikon 1.4g better when Nikon 1.8g is sharper?

How would a mousetrap for use in space work?

How to compare two different files line by line in unix?

What's the meaning of "fortified infraction restraint"?

Why wasn't DOSKEY integrated with COMMAND.COM?

What is the appropriate index architecture when forced to implement IsDeleted (soft deletes)?

How come Sam didn't become Lord of Horn Hill?

Central Vacuuming: Is it worth it, and how does it compare to normal vacuuming?

Is grep documentation about ignoring case wrong, since it doesn't ignore case in filenames?

If Windows 7 doesn't support WSL, then what does Linux subsystem option mean?

Why does it sometimes sound good to play a grace note as a lead in to a note in a melody?

How does light 'choose' between wave and particle behaviour?



Does a C shift expression have unsigned type? Why would Splint warn about a right-shift?



Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 23, 2019 at 00:00UTC (8:00pm US/Eastern)
Data science time! April 2019 and salary with experience
The Ask Question Wizard is Live!Why doesn't C have unsigned floats?Why does left shift operation invoke Undefined Behaviour when the left side operand has negative value?Is left-shifting a signed integer undefined behavior in C++03?Efficient unsigned-to-signed cast avoiding implementation-defined behaviorWhy is unsigned integer overflow defined behavior but signed integer overflow isn't?Why would the outcome of this shift left operation be deemed undefined?Arithmetic right-shift of signed integerWhy left shift of a negative signed value is not well-defined behavior?Is 1 << 31 well defined in C when sizeof(int) == 4Is “-1>>5;” unspecified behavior in C?



.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








15















For the following program:



int main(void)

int value = 2;
int result = value >> 1U;
return result;



...Splint 3.1.2 gives the warning:



splint_test.c: (in function main)
splint_test.c:4:18: Variable result initialized to type unsigned int, expects
int: value >> 1U
To ignore signs in type comparisons use +ignoresigns


Splint seems to be claiming that an expression where a signed integer is shifted right has the type of an unsigned integer. However, all I can find in the ANSI C90 standard is:




The result of E1 >> E2 is E1 right-shifted E2 bit positions. If E1 has an unsigned type or if E1 has a signed type and a nonnegative value, the value of the result is the integral part of the quotient of E1 divided by the quantity, 2 raised to the power E2.




The primary target for this code is an embedded system with a mostly-C90 compiler. However, I'm interested in writing standards-compliant code. I have been testing on GCC and Clang in C99 mode so that restrict works.



My questions are:



  1. Does the C standard make any claims about the type of the result of a bit-shift?

  2. Do compilers?

  3. If not, why might Splint be issuing this warning?









share|improve this question



















  • 4





    Have you looked in the Splint source code whether it treats >> the same as the other binary operators? That would be a bug in Splint, and since the current version seems to be still the same as in 2007, I don't think much has happened since then.

    – Roland Illig
    Apr 14 at 7:41







  • 3





    github.com/ravenexp/splint/blob/…; the actual bug is in line 5775, which takes the wider type as the result instead of just taking the type of the left operand.

    – Roland Illig
    Apr 14 at 7:52







  • 1





    clang is a much better option than splint for static analysis these days, especially since it's been over a decade since splint was last updated.

    – Shawn
    Apr 14 at 8:27












  • @Shawn Clang doesn't do strict typedef checking. Nothing except Splint does (that I know of).

    – detly
    Apr 14 at 12:00












  • @Shawn Although thanks for reminding me about scan-build, I will now add it to my CI config!

    – detly
    Apr 14 at 12:08

















15















For the following program:



int main(void)

int value = 2;
int result = value >> 1U;
return result;



...Splint 3.1.2 gives the warning:



splint_test.c: (in function main)
splint_test.c:4:18: Variable result initialized to type unsigned int, expects
int: value >> 1U
To ignore signs in type comparisons use +ignoresigns


Splint seems to be claiming that an expression where a signed integer is shifted right has the type of an unsigned integer. However, all I can find in the ANSI C90 standard is:




The result of E1 >> E2 is E1 right-shifted E2 bit positions. If E1 has an unsigned type or if E1 has a signed type and a nonnegative value, the value of the result is the integral part of the quotient of E1 divided by the quantity, 2 raised to the power E2.




The primary target for this code is an embedded system with a mostly-C90 compiler. However, I'm interested in writing standards-compliant code. I have been testing on GCC and Clang in C99 mode so that restrict works.



My questions are:



  1. Does the C standard make any claims about the type of the result of a bit-shift?

  2. Do compilers?

  3. If not, why might Splint be issuing this warning?









share|improve this question



















  • 4





    Have you looked in the Splint source code whether it treats >> the same as the other binary operators? That would be a bug in Splint, and since the current version seems to be still the same as in 2007, I don't think much has happened since then.

    – Roland Illig
    Apr 14 at 7:41







  • 3





    github.com/ravenexp/splint/blob/…; the actual bug is in line 5775, which takes the wider type as the result instead of just taking the type of the left operand.

    – Roland Illig
    Apr 14 at 7:52







  • 1





    clang is a much better option than splint for static analysis these days, especially since it's been over a decade since splint was last updated.

    – Shawn
    Apr 14 at 8:27












  • @Shawn Clang doesn't do strict typedef checking. Nothing except Splint does (that I know of).

    – detly
    Apr 14 at 12:00












  • @Shawn Although thanks for reminding me about scan-build, I will now add it to my CI config!

    – detly
    Apr 14 at 12:08













15












15








15








For the following program:



int main(void)

int value = 2;
int result = value >> 1U;
return result;



...Splint 3.1.2 gives the warning:



splint_test.c: (in function main)
splint_test.c:4:18: Variable result initialized to type unsigned int, expects
int: value >> 1U
To ignore signs in type comparisons use +ignoresigns


Splint seems to be claiming that an expression where a signed integer is shifted right has the type of an unsigned integer. However, all I can find in the ANSI C90 standard is:




The result of E1 >> E2 is E1 right-shifted E2 bit positions. If E1 has an unsigned type or if E1 has a signed type and a nonnegative value, the value of the result is the integral part of the quotient of E1 divided by the quantity, 2 raised to the power E2.




The primary target for this code is an embedded system with a mostly-C90 compiler. However, I'm interested in writing standards-compliant code. I have been testing on GCC and Clang in C99 mode so that restrict works.



My questions are:



  1. Does the C standard make any claims about the type of the result of a bit-shift?

  2. Do compilers?

  3. If not, why might Splint be issuing this warning?









share|improve this question
















For the following program:



int main(void)

int value = 2;
int result = value >> 1U;
return result;



...Splint 3.1.2 gives the warning:



splint_test.c: (in function main)
splint_test.c:4:18: Variable result initialized to type unsigned int, expects
int: value >> 1U
To ignore signs in type comparisons use +ignoresigns


Splint seems to be claiming that an expression where a signed integer is shifted right has the type of an unsigned integer. However, all I can find in the ANSI C90 standard is:




The result of E1 >> E2 is E1 right-shifted E2 bit positions. If E1 has an unsigned type or if E1 has a signed type and a nonnegative value, the value of the result is the integral part of the quotient of E1 divided by the quantity, 2 raised to the power E2.




The primary target for this code is an embedded system with a mostly-C90 compiler. However, I'm interested in writing standards-compliant code. I have been testing on GCC and Clang in C99 mode so that restrict works.



My questions are:



  1. Does the C standard make any claims about the type of the result of a bit-shift?

  2. Do compilers?

  3. If not, why might Splint be issuing this warning?






c language-lawyer code-analysis bit-shift splint






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Apr 14 at 16:05









Cody Gray

196k35385475




196k35385475










asked Apr 14 at 7:38









detlydetly

19.5k866125




19.5k866125







  • 4





    Have you looked in the Splint source code whether it treats >> the same as the other binary operators? That would be a bug in Splint, and since the current version seems to be still the same as in 2007, I don't think much has happened since then.

    – Roland Illig
    Apr 14 at 7:41







  • 3





    github.com/ravenexp/splint/blob/…; the actual bug is in line 5775, which takes the wider type as the result instead of just taking the type of the left operand.

    – Roland Illig
    Apr 14 at 7:52







  • 1





    clang is a much better option than splint for static analysis these days, especially since it's been over a decade since splint was last updated.

    – Shawn
    Apr 14 at 8:27












  • @Shawn Clang doesn't do strict typedef checking. Nothing except Splint does (that I know of).

    – detly
    Apr 14 at 12:00












  • @Shawn Although thanks for reminding me about scan-build, I will now add it to my CI config!

    – detly
    Apr 14 at 12:08












  • 4





    Have you looked in the Splint source code whether it treats >> the same as the other binary operators? That would be a bug in Splint, and since the current version seems to be still the same as in 2007, I don't think much has happened since then.

    – Roland Illig
    Apr 14 at 7:41







  • 3





    github.com/ravenexp/splint/blob/…; the actual bug is in line 5775, which takes the wider type as the result instead of just taking the type of the left operand.

    – Roland Illig
    Apr 14 at 7:52







  • 1





    clang is a much better option than splint for static analysis these days, especially since it's been over a decade since splint was last updated.

    – Shawn
    Apr 14 at 8:27












  • @Shawn Clang doesn't do strict typedef checking. Nothing except Splint does (that I know of).

    – detly
    Apr 14 at 12:00












  • @Shawn Although thanks for reminding me about scan-build, I will now add it to my CI config!

    – detly
    Apr 14 at 12:08







4




4





Have you looked in the Splint source code whether it treats >> the same as the other binary operators? That would be a bug in Splint, and since the current version seems to be still the same as in 2007, I don't think much has happened since then.

– Roland Illig
Apr 14 at 7:41






Have you looked in the Splint source code whether it treats >> the same as the other binary operators? That would be a bug in Splint, and since the current version seems to be still the same as in 2007, I don't think much has happened since then.

– Roland Illig
Apr 14 at 7:41





3




3





github.com/ravenexp/splint/blob/…; the actual bug is in line 5775, which takes the wider type as the result instead of just taking the type of the left operand.

– Roland Illig
Apr 14 at 7:52






github.com/ravenexp/splint/blob/…; the actual bug is in line 5775, which takes the wider type as the result instead of just taking the type of the left operand.

– Roland Illig
Apr 14 at 7:52





1




1





clang is a much better option than splint for static analysis these days, especially since it's been over a decade since splint was last updated.

– Shawn
Apr 14 at 8:27






clang is a much better option than splint for static analysis these days, especially since it's been over a decade since splint was last updated.

– Shawn
Apr 14 at 8:27














@Shawn Clang doesn't do strict typedef checking. Nothing except Splint does (that I know of).

– detly
Apr 14 at 12:00






@Shawn Clang doesn't do strict typedef checking. Nothing except Splint does (that I know of).

– detly
Apr 14 at 12:00














@Shawn Although thanks for reminding me about scan-build, I will now add it to my CI config!

– detly
Apr 14 at 12:08





@Shawn Although thanks for reminding me about scan-build, I will now add it to my CI config!

– detly
Apr 14 at 12:08












3 Answers
3






active

oldest

votes


















17














No. The standard says the type of a bitshift is the type of the left operand, promoted:
6.5.7p3




... The type of the result is that of the promoted left operand. ...




Your tool must be confused, inferring the type with usual arithmetic conversion, which applies to most binary operators but not << and >>.



You can also verify the type is int by inserting a _Generic-based type assert and observing that compilers accept it:



int main(void)

int value = 2;
int result = _Generic(value >> 1U, int: value>>1U); //compiles, the type is int
return result;






share|improve this answer
































    16














    It's a bug in Splint. Splint wrongly assumes that the type of e1 << e2 is ctype_wider(te1, te2). The correct type would be just te1.



    The buggy code starts here by using the same code path for the bitwise operators like &, | and ^, as well as for the << and >> operators.



    The actual bug is at the end of that code, which assumes that for all these bitwise binary operators, the return type is ctype_wider(te1, te2).



    I have opened a bug on Splint's GitHub issue tracker, referencing this question.






    share|improve this answer
































      2














      The C99 through C17 standards say:




      The integer promotions are performed on each of the operands. The type of the result is that of the promoted left operand.




      Since value is an int it requires no promotion and the type of the "promoted left operand" is int, and the type of the result of << is the same.



      C89/C90 says the same except with the word "integer" replaced by "integral".






      share|improve this answer























        Your Answer






        StackExchange.ifUsing("editor", function ()
        StackExchange.using("externalEditor", function ()
        StackExchange.using("snippets", function ()
        StackExchange.snippets.init();
        );
        );
        , "code-snippets");

        StackExchange.ready(function()
        var channelOptions =
        tags: "".split(" "),
        id: "1"
        ;
        initTagRenderer("".split(" "), "".split(" "), channelOptions);

        StackExchange.using("externalEditor", function()
        // Have to fire editor after snippets, if snippets enabled
        if (StackExchange.settings.snippets.snippetsEnabled)
        StackExchange.using("snippets", function()
        createEditor();
        );

        else
        createEditor();

        );

        function createEditor()
        StackExchange.prepareEditor(
        heartbeatType: 'answer',
        autoActivateHeartbeat: false,
        convertImagesToLinks: true,
        noModals: true,
        showLowRepImageUploadWarning: true,
        reputationToPostImages: 10,
        bindNavPrevention: true,
        postfix: "",
        imageUploader:
        brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
        contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
        allowUrls: true
        ,
        onDemand: true,
        discardSelector: ".discard-answer"
        ,immediatelyShowMarkdownHelp:true
        );



        );













        draft saved

        draft discarded


















        StackExchange.ready(
        function ()
        StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55673029%2fdoes-a-c-shift-expression-have-unsigned-type-why-would-splint-warn-about-a-righ%23new-answer', 'question_page');

        );

        Post as a guest















        Required, but never shown

























        3 Answers
        3






        active

        oldest

        votes








        3 Answers
        3






        active

        oldest

        votes









        active

        oldest

        votes






        active

        oldest

        votes









        17














        No. The standard says the type of a bitshift is the type of the left operand, promoted:
        6.5.7p3




        ... The type of the result is that of the promoted left operand. ...




        Your tool must be confused, inferring the type with usual arithmetic conversion, which applies to most binary operators but not << and >>.



        You can also verify the type is int by inserting a _Generic-based type assert and observing that compilers accept it:



        int main(void)

        int value = 2;
        int result = _Generic(value >> 1U, int: value>>1U); //compiles, the type is int
        return result;






        share|improve this answer





























          17














          No. The standard says the type of a bitshift is the type of the left operand, promoted:
          6.5.7p3




          ... The type of the result is that of the promoted left operand. ...




          Your tool must be confused, inferring the type with usual arithmetic conversion, which applies to most binary operators but not << and >>.



          You can also verify the type is int by inserting a _Generic-based type assert and observing that compilers accept it:



          int main(void)

          int value = 2;
          int result = _Generic(value >> 1U, int: value>>1U); //compiles, the type is int
          return result;






          share|improve this answer



























            17












            17








            17







            No. The standard says the type of a bitshift is the type of the left operand, promoted:
            6.5.7p3




            ... The type of the result is that of the promoted left operand. ...




            Your tool must be confused, inferring the type with usual arithmetic conversion, which applies to most binary operators but not << and >>.



            You can also verify the type is int by inserting a _Generic-based type assert and observing that compilers accept it:



            int main(void)

            int value = 2;
            int result = _Generic(value >> 1U, int: value>>1U); //compiles, the type is int
            return result;






            share|improve this answer















            No. The standard says the type of a bitshift is the type of the left operand, promoted:
            6.5.7p3




            ... The type of the result is that of the promoted left operand. ...




            Your tool must be confused, inferring the type with usual arithmetic conversion, which applies to most binary operators but not << and >>.



            You can also verify the type is int by inserting a _Generic-based type assert and observing that compilers accept it:



            int main(void)

            int value = 2;
            int result = _Generic(value >> 1U, int: value>>1U); //compiles, the type is int
            return result;







            share|improve this answer














            share|improve this answer



            share|improve this answer








            edited Apr 14 at 7:50

























            answered Apr 14 at 7:43









            PSkocikPSkocik

            35.7k65580




            35.7k65580























                16














                It's a bug in Splint. Splint wrongly assumes that the type of e1 << e2 is ctype_wider(te1, te2). The correct type would be just te1.



                The buggy code starts here by using the same code path for the bitwise operators like &, | and ^, as well as for the << and >> operators.



                The actual bug is at the end of that code, which assumes that for all these bitwise binary operators, the return type is ctype_wider(te1, te2).



                I have opened a bug on Splint's GitHub issue tracker, referencing this question.






                share|improve this answer





























                  16














                  It's a bug in Splint. Splint wrongly assumes that the type of e1 << e2 is ctype_wider(te1, te2). The correct type would be just te1.



                  The buggy code starts here by using the same code path for the bitwise operators like &, | and ^, as well as for the << and >> operators.



                  The actual bug is at the end of that code, which assumes that for all these bitwise binary operators, the return type is ctype_wider(te1, te2).



                  I have opened a bug on Splint's GitHub issue tracker, referencing this question.






                  share|improve this answer



























                    16












                    16








                    16







                    It's a bug in Splint. Splint wrongly assumes that the type of e1 << e2 is ctype_wider(te1, te2). The correct type would be just te1.



                    The buggy code starts here by using the same code path for the bitwise operators like &, | and ^, as well as for the << and >> operators.



                    The actual bug is at the end of that code, which assumes that for all these bitwise binary operators, the return type is ctype_wider(te1, te2).



                    I have opened a bug on Splint's GitHub issue tracker, referencing this question.






                    share|improve this answer















                    It's a bug in Splint. Splint wrongly assumes that the type of e1 << e2 is ctype_wider(te1, te2). The correct type would be just te1.



                    The buggy code starts here by using the same code path for the bitwise operators like &, | and ^, as well as for the << and >> operators.



                    The actual bug is at the end of that code, which assumes that for all these bitwise binary operators, the return type is ctype_wider(te1, te2).



                    I have opened a bug on Splint's GitHub issue tracker, referencing this question.







                    share|improve this answer














                    share|improve this answer



                    share|improve this answer








                    edited Apr 14 at 16:01









                    Cody Gray

                    196k35385475




                    196k35385475










                    answered Apr 14 at 7:56









                    Roland IlligRoland Illig

                    31k96493




                    31k96493





















                        2














                        The C99 through C17 standards say:




                        The integer promotions are performed on each of the operands. The type of the result is that of the promoted left operand.




                        Since value is an int it requires no promotion and the type of the "promoted left operand" is int, and the type of the result of << is the same.



                        C89/C90 says the same except with the word "integer" replaced by "integral".






                        share|improve this answer



























                          2














                          The C99 through C17 standards say:




                          The integer promotions are performed on each of the operands. The type of the result is that of the promoted left operand.




                          Since value is an int it requires no promotion and the type of the "promoted left operand" is int, and the type of the result of << is the same.



                          C89/C90 says the same except with the word "integer" replaced by "integral".






                          share|improve this answer

























                            2












                            2








                            2







                            The C99 through C17 standards say:




                            The integer promotions are performed on each of the operands. The type of the result is that of the promoted left operand.




                            Since value is an int it requires no promotion and the type of the "promoted left operand" is int, and the type of the result of << is the same.



                            C89/C90 says the same except with the word "integer" replaced by "integral".






                            share|improve this answer













                            The C99 through C17 standards say:




                            The integer promotions are performed on each of the operands. The type of the result is that of the promoted left operand.




                            Since value is an int it requires no promotion and the type of the "promoted left operand" is int, and the type of the result of << is the same.



                            C89/C90 says the same except with the word "integer" replaced by "integral".







                            share|improve this answer












                            share|improve this answer



                            share|improve this answer










                            answered Apr 14 at 7:47









                            hobbshobbs

                            146k14152240




                            146k14152240



























                                draft saved

                                draft discarded
















































                                Thanks for contributing an answer to Stack Overflow!


                                • Please be sure to answer the question. Provide details and share your research!

                                But avoid


                                • Asking for help, clarification, or responding to other answers.

                                • Making statements based on opinion; back them up with references or personal experience.

                                To learn more, see our tips on writing great answers.




                                draft saved


                                draft discarded














                                StackExchange.ready(
                                function ()
                                StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55673029%2fdoes-a-c-shift-expression-have-unsigned-type-why-would-splint-warn-about-a-righ%23new-answer', 'question_page');

                                );

                                Post as a guest















                                Required, but never shown





















































                                Required, but never shown














                                Required, but never shown












                                Required, but never shown







                                Required, but never shown

































                                Required, but never shown














                                Required, but never shown












                                Required, but never shown







                                Required, but never shown







                                Popular posts from this blog

                                getting Checkpoint VPN SSL Network Extender working in the command lineHow to connect to CheckPoint VPN on Ubuntu 18.04LTS?Will the Linux ( red-hat ) Open VPNC Client connect to checkpoint or nortel VPN gateways?VPN client for linux machine + support checkpoint gatewayVPN SSL Network Extender in FirefoxLinux Checkpoint SNX tool configuration issuesCheck Point - Connect under Linux - snx + OTPSNX VPN Ububuntu 18.XXUsing Checkpoint VPN SSL Network Extender CLI with certificateVPN with network manager (nm-applet) is not workingWill the Linux ( red-hat ) Open VPNC Client connect to checkpoint or nortel VPN gateways?VPN client for linux machine + support checkpoint gatewayImport VPN config files to NetworkManager from command lineTrouble connecting to VPN using network-manager, while command line worksStart a VPN connection with PPTP protocol on command linestarting a docker service daemon breaks the vpn networkCan't connect to vpn with Network-managerVPN SSL Network Extender in FirefoxUsing Checkpoint VPN SSL Network Extender CLI with certificate

                                Cannot Extend partition with GParted The 2019 Stack Overflow Developer Survey Results Are In Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern) 2019 Community Moderator Election ResultsCan't increase partition size with GParted?GParted doesn't recognize the unallocated space after my current partitionWhat is the best way to add unallocated space located before to Ubuntu 12.04 partition with GParted live?I can't figure out how to extend my Arch home partition into free spaceGparted Linux Mint 18.1 issueTrying to extend but swap partition is showing as Unknown in Gparted, shows proper from fdiskRearrange partitions in gparted to extend a partitionUnable to extend partition even though unallocated space is next to it using GPartedAllocate free space to root partitiongparted: how to merge unallocated space with a partition

                                Marilyn Monroe Ny fiainany manokana | Jereo koa | Meny fitetezanafanitarana azy.