1 // RUN: %clang_cc1 -S -g -o %t %s
2 # 1 "a.c"
3 # 1 "a.c" 1
4 # 1 "<built-in>" 1
5 # 103 "<built-in>"
6 # 103 "<command line>" 1
7 
8 # 1 "/private/tmp/a.h" 1
9 int bar;
10 # 105 "<command line>" 2
11 # 105 "<built-in>" 2
12 # 1 "a.c" 2
13 # 1 "/private/tmp/a.h" 1
14 int bar;
15 # 2 "a.c" 2
16 
17 int main() {
18  bar = 0;
19  return 0;
20 }
21