-
Notifications
You must be signed in to change notification settings - Fork 14.3k
[WIP]Unique stable name #310
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
Closed
Closed
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
implement the 'act-on' functions.
'Expr' type, which required a ton of implementation... Whew, at least that is over. A couple of 'TODO's remain, but we'll get to those eventually.
… the name/mark the name, and some other various TODOs there
…e in both SEMA and CodeGen without duplication
… we jsut use the tree-trnasform behavior
…XXNameMangler handles the string..
…he callback type is reasonably right
…mbda' registration is a little wrong right now though
I was trying to use the same lambda to do 2 different things, determine whether the lambda needed this mangling, and doing the mangling. Unfortuantely the logic/split there was not particularly useful. Changed back to have these function-pointers always be populated and switched to 2 different calls. This allows us to not have a conflict on not-participate-in-kernel with lambda ID #0 and ID#1 (0 is supposed to be mangled as an unnamed struct, and #1 is mangled with id 0).
This just makes it not particularly usable in the clang-c interface, which I believe we're OK with. In the future, we can re-add this behavior if we care to.
…ters are a thing too
The load was doing some funny stuff trying to turn the type of our builtin into an i8 instead of an i8*. However, it seems that when we use a global we typically just want to wrap it in a GEP to get the 1st element. This is auto-generated for us if we jsut return the string itself.
…rrect AS, then addr-space-cast if necessary
This repository does not accept pull requests. Please follow http://llvm.org/docs/Contributing.html#how-to-submit-a-patch for contribution to LLVM. |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Add tests to Erich's patch