David Blaikie | bb11391 | 2014-04-05 07:23:17 +0000 | [diff] [blame] | 1 | // RUN: %clang_cc1 -triple x86_64-none-linux-gnu -emit-llvm -g %s -o - | FileCheck %s |
| 2 | |
| 3 | // Multiple references to the same constant should result in only one entry in |
| 4 | // the globals list. |
| 5 | |
David Blaikie | 506a745 | 2014-04-05 07:46:57 +0000 | [diff] [blame] | 6 | namespace ns { |
David Blaikie | bb11391 | 2014-04-05 07:23:17 +0000 | [diff] [blame] | 7 | const int cnst = 42; |
David Blaikie | 506a745 | 2014-04-05 07:46:57 +0000 | [diff] [blame] | 8 | } |
David Blaikie | bb11391 | 2014-04-05 07:23:17 +0000 | [diff] [blame] | 9 | int f1() { |
David Blaikie | 506a745 | 2014-04-05 07:46:57 +0000 | [diff] [blame] | 10 | return ns::cnst + ns::cnst; |
David Blaikie | bb11391 | 2014-04-05 07:23:17 +0000 | [diff] [blame] | 11 | } |
| 12 | |
Duncan P. N. Exon Smith | b3a6669 | 2014-12-15 19:10:08 +0000 | [diff] [blame] | 13 | // CHECK: !"0x11\00{{.*}}"{{.*}}, [[GLOBALS:![0-9]*]], {{![0-9]*}}} ; [ DW_TAG_compile_unit ] |
David Blaikie | bb11391 | 2014-04-05 07:23:17 +0000 | [diff] [blame] | 14 | |
Duncan P. N. Exon Smith | b3a6669 | 2014-12-15 19:10:08 +0000 | [diff] [blame] | 15 | // CHECK: [[GLOBALS]] = !{[[CNST:![0-9]*]]} |
David Blaikie | bb11391 | 2014-04-05 07:23:17 +0000 | [diff] [blame] | 16 | |
Duncan P. N. Exon Smith | b3a6669 | 2014-12-15 19:10:08 +0000 | [diff] [blame] | 17 | // CHECK: [[CNST]] = !{!"0x34\00cnst\00{{.*}}", [[NS:![0-9]*]], {{[^,]+, [^,]+, [^,]+, [^,]+}}} ; [ DW_TAG_variable ] [cnst] |
David Blaikie | 506a745 | 2014-04-05 07:46:57 +0000 | [diff] [blame] | 18 | // CHECK: [[NS]] = {{.*}}; [ DW_TAG_namespace ] [ns] |
| 19 | |