This file is indexed.

/usr/src/gcc-4.7/debian/README.snapshot is in gcc-4.7-source 4.7.4-3ubuntu12.

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
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
Debian gcc-snapshot package
===========================

This package contains  a recent development SNAPSHOT of all files
contained in the GNU Compiler Collection (GCC).

DO NOT USE THIS SNAPSHOT FOR BUILDING DEBIAN PACKAGES!

This package will NEVER hit the testing distribution. It's used for
tracking gcc bugs submitted to the Debian BTS in recent development
versions of gcc.

To use this snapshot, you should set the following environment variables:

	LD_LIBRARY_PATH=/usr/lib/gcc-snapshot/lib:$LD_LIBRARY_PATH
	PATH=/usr/lib/gcc-snapshot/bin:$PATH

You might also like to use a shell script to wrap up this 
funcationality, e.g. 
 
place in /usr/local/bin/gcc-snapshot and chmod +x it 
 
----------- snip ----------
#! /bin/sh
LD_LIBRARY_PATH=/usr/lib/gcc-snapshot/lib:$LD_LIBRARY_PATH
PATH=/usr/lib/gcc-snapshot/bin:$PATH
gcc "$@"
----------- snip ----------

Make the same for g++, g77, gij, gcj, cpp, ...
 
Don't forget the quotes around the $@ or gcc will not parse it's 
command line correctly! 

Unset these variables before building Debian packages destined for an
upload to ftp-master.debian.org.