Displaying 5 results from an estimated 5 matches for "matevosyan".
2012 Feb 22
2
[LLVMdev] Intrinsic annotation doesn't work with C++ files
Hi all,
I need to use annotate inside the C++ code and want to know why doesn't it
work? How can I modify my sources to use annotate inside the C++ code too?
Thanks in advance.
Sincerely,
Hripsime.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20120222/21e75ec8/attachment.html>
2012 Feb 24
0
[LLVMdev] Intrinsic annotation doesn't work with C++ files
...make llvm understand the annotate in C++ code
or to write a new Intrinsic by myself. I tried to add a new Intrinsic
corresponding to the ExtendingLLVM doc instructions, but it is too opaque
and I faild.
Please, advise me if you can.
Sincerely,
Hripsime.
On Wed, Feb 22, 2012 at 6:35 PM, Hripsime Matevosyan
<hripsime.m at gmail.com>wrote:
> Hi all,
>
> I need to use annotate inside the C++ code and want to know why doesn't it
> work? How can I modify my sources to use annotate inside the C++ code too?
>
> Thanks in advance.
>
> Sincerely,
> Hripsime.
>
--------...
2013 Feb 02
0
[LLVMdev] Join my network on LinkedIn
LinkedIn
------------
Hripsime Matevosyan requested to add you as a connection on LinkedIn:
------------------------------------------
Jian,
I'd like to add you to my professional network on LinkedIn.
- Hripsime
Accept invitation from Hripsime Matevosyan
http://www.linkedin.com/e/q41aee-hcp8t6ws-38/A5dnB-Zdz74xXGeX3RIn9iYhwZ3_o...
2012 Jan 12
1
[LLVMdev] Cast error
Hi all,
I have a trouble with LLVM rev - 147926 cast instructions. Here is my code:
............
for(std::vector<Value*>::iterator it = getElementPtrs.begin(); it !=
getElementPtrs.end(); ++it) {
Value* current = *it;
errs() << *current << "\n";
GetElementPtrInst* gep = cast<GetElementPtrInst>(current);
2012 Feb 17
0
[LLVMdev] How to detect if a string is stored in an aggregate type.
Hi all,
I have a question concerning to std::strings. Will you please advice me how
to detect if a constant string is stored in an array of std::strings or in
other objects with aggregate type. For example,
std::string a[2] = { "str1", "str2" };
Is there any idea better than detecting this by the signature of the string
class constructor?
Sincerely,
Hripsime.
--------------