python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
Why does this code malform a reference access to an stl vector?
I have, what I think is a very basic Cpp program:
// tmp.cpp
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <vector>
#include <set>
#include <iost...

Makogan
Votes: 0
Answers: 0
How do I tell clang memory sanitizer to ignore data from certain libraries?
For example I'd like to ignore sqlite and zlib because I know they're well tested. I grabbed the zpipe.c example and built it like this. Keep in mind I'm using -lz and not building zlib myself. I'm on...
Eric Stotch
Votes: 0
Answers: 1
In LLVM, how do you get the all the instructions that is not inside the starting part of loop?
I have a code
#pragma omp for
for (i = 0; i < length; i++)
{
A[i] = A[i] * B[i];
}
After I compile it to LLVM IR, I need to get the instructions only that is not inside the "for" part...
Afif Ishamsyah
Votes: 0
Answers: 0
Why clang TypedefDecl is not a DeclContext
DeclContext class represents all declarations that can act as declaration contexts. As I understand, all declarations which can contain another declaration inside it should be inherited from DeclConte...
Mah35h
Votes: 0
Answers: 0