search for: newbiesness

Displaying 2 results from an estimated 2 matches for "newbiesness".

Did you mean: newbieness
2017 May 30
3
[frontend-dev][beginner] Allocation of structures
Hi all, I’m pretty new to the list, and to LLVM in general, so please excuse my extreme newbiesness. I’m trying to figure out what would be the appropriate way to implement move semantics. I’ve been trying to dump the IR produced by clang with some basic C++ snippet, but I’m afraid it didn’t help me much. Here’s the example I’ve been playing with (in C++): struct S { S() noexcept: x(new int)...
2017 May 31
1
[frontend-dev][beginner] Allocation of structures
On Mon, May 29, 2017 at 6:14 PM, Dimitri Racordon via llvm-dev < llvm-dev at lists.llvm.org> wrote: > Hi all, > > I’m pretty new to the list, and to LLVM in general, so please excuse my > extreme newbiesness. > > I’m trying to figure out what would be the appropriate way to implement > move semantics. > I’ve been trying to dump the IR produced by clang with some basic C++ > snippet, but I’m afraid it didn’t help me much. > Move semantics in C++ are just a mechanism to use overload re...