Mercurial > hg > CbC > CbC_llvm
view clang/test/Lexer/preamble2.c @ 165:597b3f1c2c93
fix call createTailCallEliminationPass
author | anatofuz |
---|---|
date | Tue, 24 Mar 2020 15:30:52 +0900 |
parents | 1d019706d866 |
children |
line wrap: on
line source
// Preamble detection test: header with an include guard. #ifndef HEADER_H #define HEADER_H #include "foo" int bar; #endif // This test checks for detection of the preamble of a file, which // includes all of the starting comments and #includes. // RUN: %clang_cc1 -print-preamble %s > %t // RUN: echo END. >> %t // RUN: FileCheck < %t %s // CHECK: // Preamble detection test: header with an include guard. // CHECK-NEXT: #ifndef HEADER_H // CHECK-NEXT: #define HEADER_H // CHECK-NEXT: #include "foo" // CHECK-NEXT: END.