We are creating a domain specific language that generates C++ code that must compile under gcc and also IBM xlc (version 10.1 for AIX) compilers.
One specific code snippet generated C++ code that works perfectly well under gcc, but no so much under xlc. I have modified the code to the minimum case that still triggers the compile error:
//bug183.h
class emptyList
{};
extern emptyList weco;
class otherClass
{
public:
otherClass();
otherClass(const int & p);
otherClass(const emptyList & e);
int geta() {return a;}
private:
int a;
};
class someClass
{
public:
someClass();
someClass(const someClass & other);
someClass(const otherClass & p1, const otherClass & p2);
void exportState();
private:
otherClass oc1;
otherClass oc2;
};
//bug183.cpp
#include "bug183.h"
#include <iostream>
emptyList weco = emptyList();
otherClass::otherClass() {a = 0;}
otherClass::otherClass(const int & p) {a = p;}
otherClass::otherClass(const emptyList & e) {a = 1000;}
someClass::someClass() {oc1 = otherClass(); oc2 = otherClass();}
someClass::someClass(const someClass & other) {oc1 = other.oc1; oc2 = other.oc2;}
someClass::someClass(const otherClass & p1, const otherClass & p2) {oc1 = p1; oc2 = p2;}
void someClass::exportState() {std::cout << oc1.geta() << " " << oc2.geta() << std::endl;}
int main()
{
someClass dudi;
dudi.exportState();
//this line triggers the error in xlc
someClass nuni = (someClass(otherClass(weco), otherClass(weco)));
nuni.exportState();
return 0;
}
Compiling this causes the following error to be raised:
“bug183.cpp”, line 21.66: 1540-0114 (S) A parameter name must not be the same as another parameter of this function.
but if I remove the enclosing parenthesis on the constructor call like this:
someClass nuni = someClass(otherClass(weco), otherClass(weco));
The error goes away. Also, if I change weco for another extern variable created just as weco the error goes away even if I enclose the constructor in parenthesis, so it is safe to say that both conditions need to be present for this error to show up.
Some of you may ask why don’t we just remove the parenthesis then, but doing so may hurt parts of the code that are working correctly, so I’m inclined towards understanding if this behavior is expected from a C++ compiler or not or if at least there is a known workaround for it.
I think that
is being incorrectly parsed as the start of the second production of a cast-expression:
Note § 8.2 paragraph 2 (emphasis added):
If you consider the full syntactic context of the type-id in cast-expression, it’s not possible for
...in(..);to matchtype-id, because the cast-expression following the)cannot be empty. However, if you only consider the one-token-lookahead context, where the type-id must be followed by), it could be plausible that 8.2(2) applies. I’m not really inclined to believe that the intention of the standard was to only consider one-token lookahead, though.EDIT
Reported as gcc bug 50637. You might want to submit a similar bug report to xlc.
Since gcc 4.7.2 seems to flag the same error as xlc. I played around with gcc a bit, and convinced myself that the problem is that gcc flags the error in the type-id (i.e., two parameters with the same name) before it figures out that the parenthesized expression cannot be a type-id.
Here’s an example:
See it on lws. (Toggle between gcc and clang to see the difference.)
Based on the above analysis that the problem is premature triggering of a type-error, here’s one possible workaround:
1) Add an alias for weco:
2) Use one of each:
This works on both gcc 4.7.2 and clang 3.2 (lws).