Sign in
android
/
toolchain
/
rustc
/
635618df8991b8a005e435895ea0b1eee7e3faf0
/
.
/
src
/
llvm-project
/
clang
/
test
/
Sema
/
builtins-overflow.m
blob: 3ef04b1ff8f43c6e99a49b65364f581879684120 [
file
] [
log
] [
blame
]
// RUN: %clang_cc1 -fsyntax-only -verify %s
// expected-no-diagnostics
void
test
(
void
)
{
int
z
[
1
];
__builtin_add_overflow
(
1
,
1
,
z
);
}