This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug target/52268] tls support should be added for darwin11
- From: "mikestump at comcast dot net" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: Thu, 16 Feb 2012 17:15:47 +0000
- Subject: [Bug target/52268] tls support should be added for darwin11
- Auto-submitted: auto-generated
- References: <bug-52268-4@http.gcc.gnu.org/bugzilla/>
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52268
--- Comment #1 from Mike Stump <mikestump at comcast dot net> 2012-02-16 17:15:47 UTC ---
If you could snapshot some codegen, say
void foo() {
static __thread int i = 42;
++i;
}
or somesuch, we could see if they wired it up the same was as gcc is normally
wired. I suspect it should be fairly close. I'm thinking this should be easy
to wire up.