File: 2005-12-04-DeclarationLineNumbers.c

package info (click to toggle)
llvm-2.7 2.7-6
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 59,992 kB
  • ctags: 49,499
  • sloc: cpp: 373,792; ansic: 16,885; sh: 12,614; asm: 6,809; ada: 3,083; ml: 2,942; python: 2,671; perl: 2,404; makefile: 1,691; pascal: 1,235; exp: 399; objc: 291; lisp: 184; csh: 117; xml: 38; f90: 36
file content (23 lines) | stat: -rw-r--r-- 504 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// RUN: %llvmgcc %s -S -g -o - | grep DW_TAG_compile_unit | count 1
// PR664: ensure that line #'s are emitted for declarations


short test(short br_data_0,
short br_data_1,
short br_data_2,
short br_data_3,
short br_data_4,
short br_data_5,
short br_data_6,
short br_data_7) {

short sm07 = br_data_0 + br_data_7;
short sm16 = br_data_1 + br_data_6;
short sm25 = br_data_2 + br_data_5;
short sm34 = br_data_3 + br_data_4;
short s0734 = sm07 + sm34;
short s1625 = sm16 + sm25;

return s0734 + s1625;
}