We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
We will use clang as a LLVM-Frontend to create LLVM-IR Code. Just use clang / clang++ from command line:
clang++ -c -emit-llvm -S main.cpp -o main.ll
-c -emit-llvm tells the clang compiler to create IR-Code
-c -emit-llvm