forked from OSchip/llvm-project
Internalize: More consistent file header and include guards. NFC
Match the style here to the other headers in Transforms/IPO. llvm-svn: 267581
This commit is contained in:
parent
8cd77baebc
commit
4d0dcb9891
|
@ -1,4 +1,4 @@
|
|||
//====- llvm/Transforms/IPO/Internalize.h - Internalization API -*- C++ -*-===//
|
||||
//====- Internalize.h - Internalization API ---------------------*- C++ -*-===//
|
||||
//
|
||||
// The LLVM Compiler Infrastructure
|
||||
//
|
||||
|
@ -7,8 +7,8 @@
|
|||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#ifndef LLVM_INTERNALIZE_H
|
||||
#define LLVM_INTERNALIZE_H
|
||||
#ifndef LLVM_TRANSFORMS_IPO_INTERNALIZE_H
|
||||
#define LLVM_TRANSFORMS_IPO_INTERNALIZE_H
|
||||
|
||||
#include "llvm/IR/GlobalValue.h"
|
||||
|
||||
|
@ -24,4 +24,4 @@ bool internalizeModule(
|
|||
CallGraph *CG = nullptr);
|
||||
}
|
||||
|
||||
#endif // LLVM_INTERNALIZE_H
|
||||
#endif // LLVM_TRANSFORMS_IPO_INTERNALIZE_H
|
||||
|
|
Loading…
Reference in New Issue