diff --git a/include/fp_util/feature_detect.h b/include/fp_util/feature_detect.h index eb82db9..514437f 100644 --- a/include/fp_util/feature_detect.h +++ b/include/fp_util/feature_detect.h @@ -4,9 +4,9 @@ namespace fp_util { __attribute__((feature_variable("__VARA__DETECT__"))) void detect() { - long counter = 0; - asm volatile("" : "+g"(counter) : :); - counter++; + long foo = 0; + asm volatile("" : "+g"(foo) : :); + foo++; } } // namespace fp_util