-
Notifications
You must be signed in to change notification settings - Fork 12.9k
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
Need to add product version numbers #373
Comments
mentioned in issue llvm/llvm-bugzilla-archive#10288 |
mentioned in issue llvm/llvm-bugzilla-archive#1146 |
mentioned in issue llvm/llvm-bugzilla-archive#12376 |
mentioned in issue llvm/llvm-bugzilla-archive#1609 |
1 similar comment
mentioned in issue llvm/llvm-bugzilla-archive#1609 |
mentioned in issue llvm/llvm-bugzilla-archive#17210 |
mentioned in issue llvm/llvm-bugzilla-archive#17309 |
mentioned in issue llvm/llvm-bugzilla-archive#19322 |
mentioned in issue llvm/llvm-bugzilla-archive#22282 |
mentioned in issue llvm/llvm-bugzilla-archive#2322 |
mentioned in issue llvm/llvm-bugzilla-archive#25875 |
mentioned in issue llvm/llvm-bugzilla-archive#27500 |
mentioned in issue llvm/llvm-bugzilla-archive#28448 |
mentioned in issue llvm/llvm-bugzilla-archive#28722 |
mentioned in issue llvm/llvm-bugzilla-archive#3149 |
mentioned in issue llvm/llvm-bugzilla-archive#31592 |
mentioned in issue llvm/llvm-bugzilla-archive#32058 |
mentioned in issue llvm/llvm-bugzilla-archive#32229 |
mentioned in issue llvm/llvm-bugzilla-archive#32408 |
mentioned in issue llvm/llvm-bugzilla-archive#32413 |
mentioned in issue llvm/llvm-bugzilla-archive#32459 |
mentioned in issue llvm/llvm-bugzilla-archive#32467 |
mentioned in issue llvm/llvm-bugzilla-archive#32740 |
mentioned in issue llvm/llvm-bugzilla-archive#32819 |
mentioned in issue llvm/llvm-bugzilla-archive#32979 |
mentioned in issue llvm/llvm-bugzilla-archive#32995 |
mentioned in issue llvm/llvm-bugzilla-archive#33032 |
mentioned in issue llvm/llvm-bugzilla-archive#33536 |
mentioned in issue llvm/llvm-bugzilla-archive#33587 |
mentioned in issue llvm/llvm-bugzilla-archive#34144 |
mentioned in issue llvm/llvm-bugzilla-archive#4732 |
mentioned in issue llvm/llvm-bugzilla-archive#47463 |
mentioned in issue llvm/llvm-bugzilla-archive#47768 |
mentioned in issue llvm/llvm-bugzilla-archive#47832 |
mentioned in issue llvm/llvm-bugzilla-archive#48226 |
mentioned in issue llvm/llvm-bugzilla-archive#49007 |
mentioned in issue llvm/llvm-bugzilla-archive#4958 |
mentioned in issue llvm/llvm-bugzilla-archive#50209 |
mentioned in issue llvm/llvm-bugzilla-archive#51235 |
mentioned in issue llvm/llvm-bugzilla-archive#5198 |
mentioned in issue llvm/llvm-bugzilla-archive#52263 |
mentioned in issue llvm/llvm-bugzilla-archive#5769 |
mentioned in issue llvm/llvm-bugzilla-archive#6349 |
mentioned in issue llvm/llvm-bugzilla-archive#686 |
mentioned in issue llvm/llvm-bugzilla-archive#7267 |
mentioned in issue llvm/llvm-bugzilla-archive#7328 |
mentioned in issue llvm/llvm-bugzilla-archive#7330 |
mentioned in issue llvm/llvm-bugzilla-archive#7995 |
mentioned in issue llvm/llvm-bugzilla-archive#8934 |
This PR addresses llvm#248 . Currently string literals are always lowered to a `cir.const_array` attribute even if the string literal only contains null bytes. This patch make the CodeGen emits `cir.zero` for these string literals.
…lvm#617) The patch resolves [issue llvm#248](llvm/clangir#248). It can be considered a subsequent patch to [llvm#373](llvm/clangir#373), where the case of empty strings was processed. The new patch adds processing for non-empty strings that may contain trailing zeros, such as: ``` char big_string[100000] = "123"; ``` That is converted to ``` @big_string = #cir.const_array<"123" : !cir.array<!s8i x 3>, trailing_zeros> : !cir.array<!s8i x 100000> ```
This PR addresses llvm#248 . Currently string literals are always lowered to a `cir.const_array` attribute even if the string literal only contains null bytes. This patch make the CodeGen emits `cir.zero` for these string literals.
…lvm#617) The patch resolves [issue llvm#248](llvm/clangir#248). It can be considered a subsequent patch to [llvm#373](llvm/clangir#373), where the case of empty strings was processed. The new patch adds processing for non-empty strings that may contain trailing zeros, such as: ``` char big_string[100000] = "123"; ``` That is converted to ``` @big_string = #cir.const_array<"123" : !cir.array<!s8i x 3>, trailing_zeros> : !cir.array<!s8i x 100000> ```
This PR addresses llvm#248 . Currently string literals are always lowered to a `cir.const_array` attribute even if the string literal only contains null bytes. This patch make the CodeGen emits `cir.zero` for these string literals.
…lvm#617) The patch resolves [issue llvm#248](llvm/clangir#248). It can be considered a subsequent patch to [llvm#373](llvm/clangir#373), where the case of empty strings was processed. The new patch adds processing for non-empty strings that may contain trailing zeros, such as: ``` char big_string[100000] = "123"; ``` That is converted to ``` @big_string = #cir.const_array<"123" : !cir.array<!s8i x 3>, trailing_zeros> : !cir.array<!s8i x 100000> ```
Extended Description
Add versions "1.0" and "trunk" to all our supported products.
Remove the "unspecified" version as it is of no use to us.
The text was updated successfully, but these errors were encountered: