This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
Re: Target-specific Front-Ends? (Was: front end changes for altivec)
- From: Aldy Hernandez <aldyh at redhat dot com>
- To: mike stump <mrs at windriver dot com>
- Cc: geoffk at redhat dot com, ira at apple dot com, gcc at gcc dot gnu dot org
- Date: 27 Nov 2001 20:30:57 -0600
- Subject: Re: Target-specific Front-Ends? (Was: front end changes for altivec)
- References: <200111280212.SAA10114@kankakee.wrs.com>
>>>>> "mike" == mike stump <mrs@windriver.com> writes:
> gnu::gcc::vector<int[4]> a, b;
> vector<int> cxx_vec;
> void foo() {
> a += b;
> cxx_vec.begin();
> }
> A completely trivial problem. :-)
for the record, i'm not proposing a vector keyword-- but a __vector
keyword, to be implemented in a target independent manner.
I don't think there's any plausible way of implementing "vector" and
having it coexist with STL and a myraid of other things. That much is
clear.