Fix error when not compiling with clang

This commit is contained in:
rdb 2017-02-21 02:27:28 +01:00
parent 351627a0e3
commit 1eaa1bcf70

View File

@ -81,7 +81,7 @@ get_pipeline_stage() const {
__builtin_assume(_pipeline_stage >= 0);
return pipeline_stage;
#else
return pipeline_stage;
return _pipeline_stage;
#endif
}