Clang: remove user of register keyword

This commit is contained in:
Ehmry - 2019-10-03 20:29:29 +02:00
parent 44f2c86a91
commit d52f74c7c2
1 changed files with 1 additions and 1 deletions

View File

@ -3,6 +3,6 @@ void bogomips() __attribute__((optimize("O0")));
void bogomips()
{
for (register unsigned i = 0; i < 1000000000; i++) ;
for (unsigned i = 0; i < 1000000000; i++) ;
};