search for: ariccio

Displaying 8 results from an estimated 8 matches for "ariccio".

2016 Apr 13
4
lit conditional compilation/checking?
...ly compile/check sections of code with lit? Can I rely on preprocessor defines like _WIN32? Specifically, I'm adding new tests to existing lit tests, but the new tests should only be compiled and run on Windows. Sincerely, Alexander Riccio -- "Change the world or go home." about.me/ariccio <http://about.me/ariccio> If left to my own devices, I will build more. ⁂ -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20160413/089aac07/attachment.html>
2016 Jan 05
2
llvm.natvis should be included when generating LLVM.sln
...al-c-2015.aspx>, a much better method than manually copying the file to an specific directory in %USERPROFILE%. I think it should be included in one of the CMakeLists.txt files, does anybody know how I can add it? Sincerely, Alexander Riccio -- "Change the world or go home." about.me/ariccio <http://about.me/ariccio> If left to my own devices, I will build more. ⁂ -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20160104/0d81d164/attachment-0001.html>
2016 Feb 11
3
Code in headers
...9;s the LLVM policy on code in headers? If there is none, the Chromium "C++ Dos and Don'ts" <https://www.chromium.org/developers/coding-style/cpp-dos-and-donts> page offers a good starting point. Sincerely, Alexander Riccio -- "Change the world or go home." about.me/ariccio <http://about.me/ariccio> If left to my own devices, I will build more. ⁂ -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20160210/0ad1bf02/attachment.html>
2016 Feb 11
2
Code in headers
That makes sense. Someone should stick it in the coding standards? it's just thankless work Absolutely, but since slow compile times (can) nuke my productivity, I may move some code out of headers. Sincerely, Alexander Riccio -- "Change the world or go home." about.me/ariccio <http://about.me/ariccio> If left to my own devices, I will build more. ⁂ On Wed, Feb 10, 2016 at 7:13 PM, Reid Kleckner <rnk at google.com> wrote: > Some parts of Clang are very careful about keeping implementation details > out of headers, and others aren't. Consider Reco...
2016 Apr 18
2
Redundant Twine->StringRef->Twine conversions in llvm::sys::fs::make_absolute?
...Is there some reason for this? If not, I'll write a patch to delay the StringRef p(path.data(), path.size()) construction until it's actually needed (calls to path::root_name(p) & path::relative_path(p)). Sincerely, Alexander Riccio -- "Change the world or go home." about.me/ariccio <http://about.me/ariccio> If left to my own devices, I will build more. ⁂ -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20160418/8762dc8b/attachment.html>
2016 Feb 11
2
Code in headers
> On Feb 10, 2016, at 7:34 PM, George Burgess IV via llvm-dev <llvm-dev at lists.llvm.org> wrote: > > > Someone should stick it in the coding standards? > > I'm happy to give this a shot. My 2c: I don’t think that we can agree to abstract code guidelines without knowing what it means in practice for the codebase. If you’re interested in this, please include a diff
2016 Jan 30
0
Question: C-style casting in Casting.h
...&Val) { typename cast_retty<To, FromTy>::ret_type Res2 = (typename cast_retty<To, FromTy>::ret_type)const_cast<FromTy&>(Val); return Res2; }}; Why is the C-style cast needed? Sincerely, Alexander Riccio -- "Change the world or go home." about.me/ariccio <http://about.me/ariccio> If left to my own devices, I will build more. ⁂ -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20160130/9ca2a112/attachment.html>
2016 Feb 13
2
Code in headers
...y a couple that span more than one line of code. These implementations have not changed for months/years so it’s not likely you’ll suffer from rebuilding everything while modifying them. > > Sincerely, > Alexander Riccio > -- > "Change the world or go home." > about.me/ariccio <http://about.me/ariccio> > > <http://about.me/ariccio> > If left to my own devices, I will build more. > ⁂ > > On Wed, Feb 10, 2016 at 11:05 PM, Chris Lattner <clattner at apple.com <mailto:clattner at apple.com>> wrote: > >> On Feb 10, 2016,...