This file is indexed.

/usr/lib/llvm-3.8/include/polly/CodeGen/CodegenCleanup.h is in libclang-common-3.8-dev 1:3.8.1-24.

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 polly {
llvm::FunctionPass *createCodegenCleanupPass();
}

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

#endif