Skip to content
Snippets Groups Projects
Commit c4b580b5 authored by David Blaikie's avatar David Blaikie
Browse files

Make front-end debug info namespace test frontend-only & more specific without overconstraining it

The backend portion of this test will be committed to LLVM's test suite.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@177485 91177308-0d34-0410-b5e6-96231b3b80d8
parent 970e4416
No related branches found
No related tags found
No related merge requests found
// RUN: %clang -g -S -fverbose-asm %s -o - | FileCheck %s
// RUN: %clang -g -S -emit-llvm %s -o - | FileCheck %s
// CHECK: TAG_namespace
namespace A {
enum numbers {
ZERO,
ONE
};
int i;
}
using namespace A;
numbers n;
// CHECK: [[FILE:![0-9]*]] = {{.*}} ; [ DW_TAG_file_type ] [{{.*}}/test/CodeGenCXX/debug-info-namespace.cpp]
// CHECK: [[VAR:![0-9]*]] = {{.*}}, metadata [[NS:![0-9]*]], metadata !"i", {{.*}} ; [ DW_TAG_variable ] [i]
// CHECK: [[NS]] = {{.*}}, metadata [[FILE]], {{.*}} ; [ DW_TAG_namespace ] [A] [line 3]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment