python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
What is the "conformance viewer" tool on Compiler Explorer? https://godbolt.org/
I see it as a tool I can add, yet I do not know what it does. I have tried googling, but could not see an answer. Surely this is documented somewhere. Or someone knows and has published it.
Ari Sweedler
Votes: 0
Answers: 1
How to use <stacktrace> in GCC trunk?
From https://github.com/gcc-mirror/gcc/commit/3acb929cc0beb79e6f4005eb22ee88b45e1cbc1d commit, C++ standard header <stacktrace> exists things such as std::stacktrace_entry but is not declared si...
Desmond Gold
Votes: 0
Answers: 1
What is the name of the default code model used by gcc for MIPS 64?
gcc for MIPS 64 is using a complex method to locate and invoke a function not present in the compilation unit. What is the name of this code model (and where is it documented)? I searched but did no...
Erik Eidt
Votes: 0
Answers: 1
Comparing C++17 Compilers and their generated optimized assembly
Here's a basic working C++ program.
#include <string>
#include <string_view>
#include <iostream>
template<typename ValueType>
struct BasicType {
ValueType value{};
std...
Francis Cugler
Votes: 0
Answers: 0