Skip to content

Commit

Permalink
Support '#pragma once' in headers when using PCH
Browse files Browse the repository at this point in the history
    
The '#pragma once' directive was erroneously ignored when encountered
in the header-file specified in generate-PCH-mode. This resulted in
compile-time errors in some cases with legal code, and also a misleading
warning being produced.

Patch by Warren Ristow!

Differential Revision: http://reviews.llvm.org/D19815

llvm-svn: 276653
  • Loading branch information
Sunil Srivastava committed Jul 25, 2016
1 parent 0cdbe7a commit fe58327
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 1 deletion.
4 changes: 3 additions & 1 deletion clang/lib/Lex/Pragma.cpp
Expand Up @@ -352,7 +352,9 @@ void Preprocessor::HandleMicrosoft__pragma(Token &Tok) {
/// HandlePragmaOnce - Handle \#pragma once. OnceTok is the 'once'.
///
void Preprocessor::HandlePragmaOnce(Token &OnceTok) {
if (isInPrimaryFile()) {
// Don't honor the 'once' when handling the primary source file, unless
// this is a prefix to a TU, which indicates we're generating a PCH file.
if (isInPrimaryFile() && TUKind != TU_Prefix) {
Diag(OnceTok, diag::pp_pragma_once_in_main_file);
return;
}
Expand Down
5 changes: 5 additions & 0 deletions clang/test/PCH/Inputs/pragma-once.h
@@ -0,0 +1,5 @@
#pragma once

/* For use with the pragma-once.c test */

int x = 3;
13 changes: 13 additions & 0 deletions clang/test/PCH/pragma-once.c
@@ -0,0 +1,13 @@
// Test this without pch.
// RUN: %clang_cc1 -include %S/Inputs/pragma-once.h -fsyntax-only -verify %s

// Test with pch.
// RUN: %clang_cc1 -emit-pch -o %t %S/Inputs/pragma-once.h
// RUN: %clang_cc1 -include-pch %t -fsyntax-only -verify %s

// expected-no-diagnostics

// Including "pragma-once.h" twice, to verify the 'once' aspect is honored.
#include "Inputs/pragma-once.h"
#include "Inputs/pragma-once.h"
int foo(void) { return 0; }

0 comments on commit fe58327

Please sign in to comment.