This file is indexed.

/usr/lib/llvm-4.0/include/polly/CodeGen/CodegenCleanup.h is in libclang-common-4.0-dev 1:4.0.1-10.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
#ifndef POLLY_CODEGENCLEANUP_H
#define POLLY_CODEGENCLEANUP_H

namespace llvm {
class FunctionPass;
class PassRegistry;
} // namespace llvm

namespace polly {
llvm::FunctionPass *createCodegenCleanupPass();
} // namespace polly

namespace llvm {
void initializeCodegenCleanupPass(llvm::PassRegistry &);
} // namespace llvm

#endif