Skip to content

Commit 3b2c75e

Browse files
committed
Don't make assumptions about the underlying type of size_t.
This fixes Windows CI.
1 parent 42abe65 commit 3b2c75e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

clang/test/SemaCXX/paren-list-init-expr.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ void CallNew() {
88
}
99
// CHECK-LABEL: FunctionTemplateDecl {{.*}} CallNew
1010
// CHECK: |-FunctionDecl {{.*}} CallNew 'void ()'
11-
// CHECK: `-CXXNewExpr {{.*}} 'operator new' 'void *(unsigned long)'
11+
// CHECK: `-CXXNewExpr {{.*}} 'operator new'
1212
// CHECK: `-CXXParenListInitExpr {{.*}} 'Node'
1313
// CHECK: `-ImplicitCastExpr {{.*}} 'long' <IntegralCast>
1414
// CHECK: `-IntegerLiteral {{.*}} 'int' 0
1515
// CHECK: `-FunctionDecl {{.*}} used CallNew 'void ()' implicit_instantiation
1616
// CHECK: |-TemplateArgument integral 'true'
17-
// CHECK: `-CXXNewExpr {{.*}} 'operator new' 'void *(unsigned long)'
17+
// CHECK: `-CXXNewExpr {{.*}} 'operator new'
1818
// CHECK: `-CXXParenListInitExpr {{.*}} 'Node'
1919
// CHECK: `-ImplicitCastExpr {{.*}} 'long' <IntegralCast>
2020
// CHECK: `-IntegerLiteral {{.*}} 'int' 0

0 commit comments

Comments
 (0)