mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-28 07:49:01 -04:00

The spelling location of stringified strings is not a file location. Optimally, we'll want to solve the problem (as the FIXME states) by handing in the right FileEntry of the #include location. llvm-svn: 204220
5 lines
317 B
C++
5 lines
317 B
C++
// RUN: rm -rf %t
|
|
// RUN: %clang_cc1 -include "g.h" -include "e.h" -include "f.h" -include "i.h" -fmodule-maps -fmodules-cache-path=%t -fmodules-decluse -fmodule-name=XG -I %S/Inputs/declare-use %s -verify
|
|
// expected-error {{module XG does not depend on a module exporting 'f.h'}}
|
|
const int g2 = g1 + e + f + aux_i;
|