mirror of
https://github.com/llvm/llvm-project.git
synced 2025-05-13 20:46:04 +00:00

when the RHS of the ||/&& is ever 0 or 1. This handles a variety of creative idioms for "true" used in C programs and fixes many false positives at the expense of a few false negatives. This fixes rdar://8230351. llvm-svn: 109314
7 lines
213 B
C++
7 lines
213 B
C++
// RUN: %clang_cc1 -emit-llvm-only -verify %s
|
|
|
|
// Make sure we don't crash generating y; its value is constant, but the
|
|
// initializer has side effects, so EmitConstantExpr should fail.
|
|
int x();
|
|
int y = x() && 0;
|