Skip to content
Snippets Groups Projects
Commit 46348d93 authored by Jordan Rose's avatar Jordan Rose
Browse files

Remove wchar_t* buffer from scanf format fix-it test.

Amends r204300 to not try to test fixing a wchar_t* to "%ls", which we don't
do correctly anyway. In C mode, wchar_t is just a typedef for a normal
primitive integer type, not a distinct type like it is in C++. To make this
work correctly, we'll need to look for the wchar_t typedef, not just the
builtin type.

Should fix the buildbots.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@204349 91177308-0d34-0410-b5e6-96231b3b80d8
parent 100624f4
No related branches found
No related tags found
No related merge requests found
......@@ -101,7 +101,6 @@ int scanf(char const *, ...);
void test2(int intSAParm[static 2]) {
char str[100];
char *vstr = "abc";
wchar_t wstr[100];
short shortVar;
unsigned short uShortVar;
int intVar;
......@@ -124,8 +123,6 @@ void test2(int intSAParm[static 2]) {
scanf("%lf", str);
scanf("%lf", vstr);
scanf("%ls", str);
scanf("%f", wstr); // FIXME: wchar_t should resolve to %ls, not %d.
scanf("%s", wstr); // FIXME: wchar_t should resolve to %ls, not %d.
scanf("%ls", str);
// Some integer types.
......@@ -225,8 +222,6 @@ void test2(int intSAParm[static 2]) {
// CHECK: scanf("%99s", str);
// CHECK: scanf("%s", vstr);
// CHECK: scanf("%99s", str);
// CHECK: scanf("{{%d|%hu}}", wstr);
// CHECK: scanf("{{%d|%hu}}", wstr);
// CHECK: scanf("%99s", str);
// CHECK: scanf("%hd", &shortVar);
// CHECK: scanf("%hu", &uShortVar);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment