python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Is there a backend optimizer in LLVM?
I can get the optimization level from the command llc -help
-O=<char> - Optimization level. [-O0, -O1, -O2, or -O3] (default = '-O2')
I want to know what the optimization does exa...
Shane
Votes: 0
Answers: 1
Is LLVM IR a machine independent language?
When I was reading LLVM IR code (transformed from C), I saw an instruction like this:
%div = sdiv i32 %add, %32
The C code of this instruction may be like this:
a = c / b;
We can see that there is a...
Shane
Votes: 0
Answers: 3
In Java 8 compiler, what is nameexpr field in JCVariableDecl for
In java compiler JCTree.java the JCVariableDecl is defined as the following:
public static class JCVariableDecl extends JCStatement implements VariableTree {
/** variable modifiers */
...
Capital S
Votes: 0
Answers: 1
(C++) declaration of 'std::string fil' shadows a parameter
I am trying to make my own compiler(yes) and c++(cpp version of cc) is giving me an error saying: error: declaration of 'std::string fil' shadows a parameter.
Code:
#include <iostream>
#include ...
coolCguy
Votes: 0
Answers: 1