As expected, the compiler (VisualStudio 2008) will give a warning

warning C4715: 'doSomethingWith' : not all control paths return a value

when compiling the following code:

int doSomethingWith(int value)
{
    int returnValue = 3;
    bool condition = false;

    if(condition)
        // returnValue += value; // DOH

    return returnValue;
}

int main(int argc, char* argv[])
{
    int foo = 10;
    int result = doSomethingWith(foo);
    return 0;
}

But the program runs just fine. The return value of function doSomethingWith() is 0.

Is is just undefined behavior, or is there a certain rule how the result value is created/computed at runtime. What happens with non-POD datatypes as return value?

link|improve this question

Have a look to this answer: stackoverflow.com/questions/1610030/… – fnieto - Fernando Nieto Apr 8 '10 at 7:48
@fnieto: Ah, I see, this is a very good answer. Didn't find it myself though, before asking... – nabulke Apr 8 '10 at 7:52
feedback

3 Answers

up vote 9 down vote accepted

It is Undefined behaviour as specified in the ISO C++ standard section 6.6.3:

Flowing off the end of a function is equivalent to a return with no value; this results in undefined behavior in a value-returning function.

link|improve this answer
2  
Specific wordings:— Flowing off the end of a function is equivalent to a return with no value; this results in undefined behavior in a value-returning function. – KennyTM Apr 8 '10 at 7:02
1  
'main' function is an exception to that rule. In nabulke code, last 'main' function line is redundant. – fnieto - Fernando Nieto Apr 8 '10 at 7:46
As an important addition to this answer, 3.6.1/5 states: "If control reaches the end of main without encountering a return statement, the effect is that of executing return 0;". – Lightness Races in Orbit Jul 15 '11 at 14:22
feedback

For x86 processors the standard calling convention puts the return value to the EAX register. Practically it means that for most compilers if we reach the end of the function without returning the result of the last math operation will be returned. You can not rely on it and it is not portable.

http://en.wikipedia.org/wiki/X86_calling_conventions#cdecl

link|improve this answer
feedback

Not returning a value from a value-returning function leads to undefined behavior.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.