mirror of
https://github.com/opnsense/src.git
synced 2026-02-27 11:50:47 -05:00
http://llvm.org/svn/llvm-project/cfe/branches/release_28@114020 Approved by: rpaulo (mentor)
9 lines
178 B
C
9 lines
178 B
C
// RUN: %clang_cc1 -verify -emit-llvm-only
|
|
|
|
// PR7242: Check that this doesn't crash.
|
|
int main(void)
|
|
{
|
|
int __negative = 1;
|
|
const int __max = __negative && 0 ;
|
|
__max / 0;
|
|
}
|