I accidentally put the opening brace of my function definition after the return statement

int id(int k) return k; { }

But GCC answered with a weird error message

error: named return values are no longer supported

Can anyone please explain what that weird feature might be? I've never heard about it.

link|improve this question

62% accept rate
maybe some early implementation of NRVO where you had to name the variable to get it to elide the copy? – Steve Townsend Nov 22 '10 at 14:38
Go has named result parameters, golang.org/doc/effective_go.html – kaizer.se Nov 11 '11 at 11:35
feedback

3 Answers

up vote 20 down vote accepted

See here - early NRVO implementation by explicit definition of the named return value in the function header.

Native support for NRVO without this extension was added here - GCC 3.1 Release Series.

Brief cut and paste for context:

G++ now supports the "named return value optimization": for code like

A f () {
  A a;
  ...
  return a;
}

G++ will allocate a in the return value slot, so that the return becomes a no-op. For this to work, all return statements in the function must return the same variable.

link|improve this answer
Wow that's crazy. Thanks for the answer. – Johannes Schaub - litb Nov 22 '10 at 14:53
NRVO is a subject near to my heart after spending a long time trying to work out why the heck VC++ 7.1 (which is the last Microsoft C++ to have no NRVO) is so slow when returning large vector results... – Steve Townsend Nov 22 '10 at 14:56
isn't there also something in VC++2008 like no NRVO in debug builds ? – Matthieu M. Nov 22 '10 at 16:02
@Matthieu - that would not surprise me, debug Visual C++ universally favours debuggability over performance (see 'checked STL', for example). All I know for sure is that NRVO first came into Visual C++ in VC8. – Steve Townsend Nov 22 '10 at 16:06
It is an old thing. Dating back at least to 2.4.5, June 93. There were other experimental things in g++ (I remember min/max operators, signatures which are precursor of go interface,...) around that time. – AProgrammer Nov 22 '10 at 17:02
feedback

See here

They were removed in gcc3.4

link|improve this answer
feedback

This was a GCC extension, removed in GCC 3.4.

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.