mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-05-15 02:16:40 +00:00

This commit fixes "TextDiagnostic::emitIncludeLocation" when compiling with "-fdiagnostics-absolute-paths" flag enabled by emitting the absolute path of the included file. Fixes #63026 Reviewed By: aaron.ballman Differential Revision: https://reviews.llvm.org/D151833
23 lines
1.0 KiB
C
23 lines
1.0 KiB
C
// RUN: %clang_cc1 -fsyntax-only -I %S/Inputs/SystemHeaderPrefix/.. %s 2>&1 | FileCheck -DROOT_ABSOLUTE=%s -check-prefix=NORMAL -check-prefix=CHECK %s
|
|
// RUN: %clang_cc1 -fsyntax-only -I %S/Inputs/SystemHeaderPrefix/.. -fdiagnostics-absolute-paths %s 2>&1 | FileCheck -DROOT_ABSOLUTE=%s -check-prefix=ABSOLUTE -check-prefix=CHECK %s
|
|
|
|
#include "absolute-paths-import.h"
|
|
// NORMAL: In file included from {{.*}}absolute-paths.c:4:
|
|
// NORMAL-NOT: In file included from [[ROOT_ABSOLUTE]]:4:
|
|
// ABSOLUTE: In file included from [[ROOT_ABSOLUTE]]:4:
|
|
|
|
#include "absolute-paths.h"
|
|
|
|
// Check whether the diagnostic from the header above includes the dummy
|
|
// directory in the path.
|
|
// NORMAL: SystemHeaderPrefix
|
|
// ABSOLUTE-NOT: SystemHeaderPrefix
|
|
// CHECK: warning: non-void function does not return a value
|
|
|
|
|
|
// For files which don't exist, just print the filename.
|
|
#line 123 "non-existant.c"
|
|
int g(void) {}
|
|
// NORMAL: non-existant.c:123:14: warning: non-void function does not return a value
|
|
// ABSOLUTE: non-existant.c:123:14: warning: non-void function does not return a value
|