mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-17 18:56:37 +00:00

Summary: EOF macro token coming from a PCH file on macOS while marked as literal, doesn't contain any literal data. This causes crash on every project using PCHs. This commit doesn't resolve the problem with PCH (maybe it was designed like this for a purpose) or with `tryExpandAsInteger`, but rather simply shoots off a crash itself. Differential Revision: https://reviews.llvm.org/D81916
29 lines
649 B
C++
29 lines
649 B
C++
// RUN: %clang_cc1 -triple x86_64-apple-macosx10.15.0 -emit-pch -o %t %s
|
|
// RUN: %clang_analyze_cc1 -triple x86_64-apple-macosx10.15.0 -include-pch %t \
|
|
// RUN: -analyzer-checker=core,apiModeling -verify %s
|
|
//
|
|
// RUN: %clang_cc1 -emit-pch -o %t %s
|
|
// RUN: %clang_analyze_cc1 -include-pch %t \
|
|
// RUN: -analyzer-checker=core,apiModeling -verify %s
|
|
|
|
// expected-no-diagnostics
|
|
|
|
#ifndef HEADER
|
|
#define HEADER
|
|
// Pre-compiled header
|
|
|
|
int foo();
|
|
|
|
// Literal data for this macro value will be null
|
|
#define EOF -1
|
|
|
|
#else
|
|
// Source file
|
|
|
|
int test() {
|
|
// we need a function call here to initiate erroneous routine
|
|
return foo(); // no-crash
|
|
}
|
|
|
|
#endif
|