@@ -260,12 +260,12 @@ Error DataLayout::parseSpecifier(StringRef Desc) {
260
260
while (!Desc.empty ()) {
261
261
// Split at '-'.
262
262
std::pair<StringRef, StringRef> Split;
263
- if (Error Err = split (Desc, ' -' , Split))
263
+ if (Error Err = :: split (Desc, ' -' , Split))
264
264
return Err;
265
265
Desc = Split.second ;
266
266
267
267
// Split at ':'.
268
- if (Error Err = split (Split.first , ' :' , Split))
268
+ if (Error Err = :: split (Split.first , ' :' , Split))
269
269
return Err;
270
270
271
271
// Aliases used below.
@@ -274,7 +274,7 @@ Error DataLayout::parseSpecifier(StringRef Desc) {
274
274
275
275
if (Tok == " ni" ) {
276
276
do {
277
- if (Error Err = split (Rest, ' :' , Split))
277
+ if (Error Err = :: split (Rest, ' :' , Split))
278
278
return Err;
279
279
Rest = Split.second ;
280
280
unsigned AS;
@@ -315,7 +315,7 @@ Error DataLayout::parseSpecifier(StringRef Desc) {
315
315
if (Rest.empty ())
316
316
return reportError (
317
317
" Missing size specification for pointer in datalayout string" );
318
- if (Error Err = split (Rest, ' :' , Split))
318
+ if (Error Err = :: split (Rest, ' :' , Split))
319
319
return Err;
320
320
unsigned PointerMemSize;
321
321
if (Error Err = getIntInBytes (Tok, PointerMemSize))
@@ -327,7 +327,7 @@ Error DataLayout::parseSpecifier(StringRef Desc) {
327
327
if (Rest.empty ())
328
328
return reportError (
329
329
" Missing alignment specification for pointer in datalayout string" );
330
- if (Error Err = split (Rest, ' :' , Split))
330
+ if (Error Err = :: split (Rest, ' :' , Split))
331
331
return Err;
332
332
unsigned PointerABIAlign;
333
333
if (Error Err = getIntInBytes (Tok, PointerABIAlign))
@@ -342,7 +342,7 @@ Error DataLayout::parseSpecifier(StringRef Desc) {
342
342
// Preferred alignment.
343
343
unsigned PointerPrefAlign = PointerABIAlign;
344
344
if (!Rest.empty ()) {
345
- if (Error Err = split (Rest, ' :' , Split))
345
+ if (Error Err = :: split (Rest, ' :' , Split))
346
346
return Err;
347
347
if (Error Err = getIntInBytes (Tok, PointerPrefAlign))
348
348
return Err;
@@ -352,7 +352,7 @@ Error DataLayout::parseSpecifier(StringRef Desc) {
352
352
353
353
// Now read the index. It is the second optional parameter here.
354
354
if (!Rest.empty ()) {
355
- if (Error Err = split (Rest, ' :' , Split))
355
+ if (Error Err = :: split (Rest, ' :' , Split))
356
356
return Err;
357
357
if (Error Err = getIntInBytes (Tok, IndexSize))
358
358
return Err;
@@ -393,7 +393,7 @@ Error DataLayout::parseSpecifier(StringRef Desc) {
393
393
if (Rest.empty ())
394
394
return reportError (
395
395
" Missing alignment specification in datalayout string" );
396
- if (Error Err = split (Rest, ' :' , Split))
396
+ if (Error Err = :: split (Rest, ' :' , Split))
397
397
return Err;
398
398
unsigned ABIAlign;
399
399
if (Error Err = getIntInBytes (Tok, ABIAlign))
@@ -410,7 +410,7 @@ Error DataLayout::parseSpecifier(StringRef Desc) {
410
410
// Preferred alignment.
411
411
unsigned PrefAlign = ABIAlign;
412
412
if (!Rest.empty ()) {
413
- if (Error Err = split (Rest, ' :' , Split))
413
+ if (Error Err = :: split (Rest, ' :' , Split))
414
414
return Err;
415
415
if (Error Err = getIntInBytes (Tok, PrefAlign))
416
416
return Err;
@@ -439,7 +439,7 @@ Error DataLayout::parseSpecifier(StringRef Desc) {
439
439
LegalIntWidths.push_back (Width);
440
440
if (Rest.empty ())
441
441
break ;
442
- if (Error Err = split (Rest, ' :' , Split))
442
+ if (Error Err = :: split (Rest, ' :' , Split))
443
443
return Err;
444
444
}
445
445
break ;
0 commit comments