Replace incorrect uint32_t with correct int vars (#2235)

This commit is contained in:
Ryan Harrison 2020-05-21 07:37:13 -04:00 committed by GitHub
parent a0cce739bc
commit eba1389a01
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -92,8 +92,8 @@ public:
if (processedDerefs.find(&base) == processedDerefs.end()) {
processedDerefs.insert(&base);
uint32_t blockIndex = -1;
uint32_t offset = -1;
int blockIndex = -1;
int offset = -1;
TList<TIntermBinary*> derefs;
TString baseName = base.getName();