-
Notifications
You must be signed in to change notification settings - Fork 13.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
move test/Programs out of the main llvm tree #629
Comments
I mentioned this to brian, and he pointed out that test/Regression/CFrontend and -Chris |
Changing all of these bugs who do not have people looking at them to be assigned If I stole your bug, and you still want it, feel free to take ownership back. -Chris |
3 similar comments
Changing all of these bugs who do not have people looking at them to be assigned If I stole your bug, and you still want it, feel free to take ownership back. -Chris |
Changing all of these bugs who do not have people looking at them to be assigned If I stole your bug, and you still want it, feel free to take ownership back. -Chris |
Changing all of these bugs who do not have people looking at them to be assigned If I stole your bug, and you still want it, feel free to take ownership back. -Chris |
Here's something that I sent to John just today: In theory, it sounds like we want llvm/ The idea being that everything under projects is optional. We could What do you think? -Chris |
The basic idea looks good, with one minor tweak that I would like to suggest. One of the ideas behind CVS is the notion of "modules" which tyipcally cvs -d :pserver:anon@llvm-cvs.cs.uiuc.edu:/var/cvs/llvm checkout . I think the repository should be made a little flatter, structured this way: /var/cvs/llvm/llvm - Everything you have under /llvm This way, one can set CVSROOT to .../var/cvs/llvm I believe this arrangement works for everyone. Developers of LLVM can just use Also with this arrangement you can go to the top of your checkout directory and Reid. |
Oh yeah, I forgot to mention, that this was similar to the plan. We already do When packaging the release, the different CVS modules would go into different -Chris |
The --enable-jit and --enable-llc_diffs options should move from the main configure |
The conversion has been completed. John C did the basic work of creating a new SOOOO .. here's what you need to know:
Happy Testing. |
Reopen to assign. |
Re-resolve after assignment. |
One of the builders was adding a retun value to the CallOp when given a void return type. The expected behavior is to not add a return value. Two other minor fixes were added to the return value: its constraint was replaced from variadic to optional and it was assigned a name. This prevents function calls with multiple returns and facilitates access to the single return value, respectively.
One of the builders was adding a retun value to the CallOp when given a void return type. The expected behavior is to not add a return value. Two other minor fixes were added to the return value: its constraint was replaced from variadic to optional and it was assigned a name. This prevents function calls with multiple returns and facilitates access to the single return value, respectively.
One of the builders was adding a retun value to the CallOp when given a void return type. The expected behavior is to not add a return value. Two other minor fixes were added to the return value: its constraint was replaced from variadic to optional and it was assigned a name. This prevents function calls with multiple returns and facilitates access to the single return value, respectively.
Extended Description
This will allow us to simplify the machinery for running the tests under
test/Programs and also make build changes to the rest of the tree much more
easily.
The Programs subdirectory should be a different module in cvs which once
dropped in under $srcdir/test, be picked up by configure, configured and
integrated in the build process as it is today (in other words once it is
checked out in the right place, running it should not be different than what
it is today).
The text was updated successfully, but these errors were encountered: