Fix a typo in the strtoi test

https://reviews.llvm.org/D54702

llvm-svn: 348683
This commit is contained in:
Kamil Rytarowski 2018-12-08 04:46:15 +00:00
parent 3ac7a15163
commit e1f966508f

View File

@ -34,10 +34,10 @@ int main(void) {
// CHECK: strtoi
// CHECK: strtoi: conversion of '100' to a number successful, using 100, p=0
// CHECK: strtoi: conversion of '100' to a number failed, using 10, p=0
// CHECK: strtoi: conversion of '100xyz' to a number failed, using 10, p=0x78
// CHECK: strtoi: conversion of '100xyz' to a number failed, using 100, p=0x78
// CHECK: strtou: conversion of '100' to a number successful, using 100, p=0
// CHECK: strtou: conversion of '100' to a number failed, using 10, p=0
// CHECK: strtou: conversion of '100xyz' to a number failed, using 10, p=0x78
// CHECK: strtou: conversion of '100xyz' to a number failed, using 100, p=0x78
return 0;
}