I was having an odd problem that I narrowed down to the following test case:
inl.h:
inline const char *fn() { return id; }
a.cc:
#include <stdio.h>
static const char *id = "This is A";
#include "inl.h"
void A()
{
printf("In A we get: %s\n", fn());
}
b.cc:
#include <stdio.h>
static const char *id = "This is B";
#include "inl.h"
void B()
{
printf("In B we get: %s\n", fn());
}
extern void A();
int main()
{
A();
B();
return 0;
}
Now when I compile this with g++ -O1 a.cc b.cc it seems to work correctly. I get:
In A we get: This is A
In B we get: This is B
but if I compile with g++ -O0 a.cc b.cc I get:
In A we get: This is A
In B we get: This is A
Note that I'm actually trying to use C11 semantics here, but I'm using g++ as gcc doesn't support C11 yet.
Now as far as I can see, looking at both the C11 spec and the C++ spec (C++11 and older specs -- the semantics of inline and static globals does not seem to have changed), it should do what I want, and the failure when using -O0 is a bug in gcc.
Is this correct, or is there something somewhere in the spec that I'm missing that would make this undefined behavior?
Edit
The common answer seems to claim that fn needs to be declared as static for this to work. But according to 6.7.4.6 of the C99 spec (6.7.4.7 in the C11 spec -- not sure about the C++ spec):
If all of the file scope declarations for a function in a translation unit include the inline function specifier without extern, then the definition in that translation unit is an inline definition. An inline definition does not provide an external definition for the function, and does not forbid an external definition in another translation unit.
So since there's no explicit extern here, these should be two independent inline functions with no interaction with each other. No explicit static is required.
Using an explicit static fixes the problem for C, but doesn't work for C++ inline member functions, as the static keyword has a completely different meaning in that case.