1d0c9a29cSDaniel Dunbar // Test that the source manager has the "proper" idea about the include stack 2d0c9a29cSDaniel Dunbar // when using PCH. 3d0c9a29cSDaniel Dunbar 4d0c9a29cSDaniel Dunbar // RUN: echo 'int x;' > %t.prefix.h 5*24284afaSChandler Carruth // RUN: not %clang_cc1 -fsyntax-only -fdiagnostics-show-note-include-stack -include %t.prefix.h %s 2> %t.diags.no_pch.txt 68fbe78f6SDaniel Dunbar // RUN: %clang_cc1 -emit-pch -o %t.prefix.pch %t.prefix.h 7*24284afaSChandler Carruth // RUN: not %clang_cc1 -fsyntax-only -fdiagnostics-show-note-include-stack -include-pch %t.prefix.pch %s 2> %t.diags.pch.txt 8d0c9a29cSDaniel Dunbar // RUN: diff %t.diags.no_pch.txt %t.diags.pch.txt 9d0c9a29cSDaniel Dunbar // XFAIL: * 10d0c9a29cSDaniel Dunbar // PR5662 11d0c9a29cSDaniel Dunbar 12d0c9a29cSDaniel Dunbar float x; 13