How does noexcept in C++ change the assembly? I tried a bit with small functions, in godbolt, but the assembly did not change.
float pi()
//noexcept // no difference
{ return 3.14; }
int main(){
float b{0};
b = pi();
return 0;
}
I am looking for a minimal working example, where I can see a change in the assembly due to noexcept
.