Displaying 2 results from an estimated 2 matches for "llvm_code".
Did you mean:
llvm_cfe
2003 Nov 11
2
[LLVMdev] RE: Status of tests
> What's the current status of the test suite. After putting everything
> in the llvm namespace and getting everything to link, I am getting=20
> only about 75% of the tests passing. Is this to be expected or have
> I broken something?
I think that you broke something, specifically the C backend. See this
comment for details:
http://llvm.cs.uiuc.edu/bugs/show_bug.cgi?id=109#c12
2003 Nov 11
0
[LLVMdev] RE: Status of tests
Okay, I'll fix that. But something *WILL* have to change, its not
gratuitious.
The "-c" option is in an enum which also has a "llvm" value which
conflicts with the namespace name and caused a compilation error.
To avoid the error, I changed "llvm" to "llvm_code". To be consistent, I
changed the "c" enumeration to also have the same suffix, "_code".
I wasn't aware when changing this that I'd be changing the command line
arguments.
I'll work up another solution.
REid.
On Tue, 2003-11-11 at 10:14, Chris Lattner wrote...