diff options
author | Adrian Prantl <aprantl@apple.com> | 2014-01-07 01:19:08 +0000 |
---|---|---|
committer | Adrian Prantl <aprantl@apple.com> | 2014-01-07 01:19:08 +0000 |
commit | a763447124ba107870865b1c7ba8ad97f0cf78d8 (patch) | |
tree | 7265d3d7bb8bfc79362b21bdb1e9bd280fa98932 /clang/test/CodeGenCXX/debug-info-template-limit.cpp | |
parent | 0b8e3b2cb41e105a39b9d9b21d6ece18942581cb (diff) | |
download | bcm5719-llvm-a763447124ba107870865b1c7ba8ad97f0cf78d8.tar.gz bcm5719-llvm-a763447124ba107870865b1c7ba8ad97f0cf78d8.zip |
Implement a new -fstandalone-debug option. rdar://problem/15685848
It controls everything that -flimit-debug-info used to, plus the
vtable type optimization. The old -fno-limit-debug-info option is now an
alias to -fstandalone-debug and vice versa.
Standalone is the default on Darwin until dtrace is updated to work with
non-standalone debug info (rdar://problem/15758808).
Note: I kept the LimitedDebugInfo name in CodeGenOptions::DebugInfoKind
because NoStandaloneDebugInfo sounded even more confusing.
llvm-svn: 198655
Diffstat (limited to 'clang/test/CodeGenCXX/debug-info-template-limit.cpp')
-rw-r--r-- | clang/test/CodeGenCXX/debug-info-template-limit.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/CodeGenCXX/debug-info-template-limit.cpp b/clang/test/CodeGenCXX/debug-info-template-limit.cpp index 34e4373a753..6b158573c00 100644 --- a/clang/test/CodeGenCXX/debug-info-template-limit.cpp +++ b/clang/test/CodeGenCXX/debug-info-template-limit.cpp @@ -1,4 +1,4 @@ -// RUN: %clang_cc1 -emit-llvm -flimit-debug-info -cxx-abi itanium -g %s -o - | FileCheck %s +// RUN: %clang_cc1 -emit-llvm -fno-standalone-debug -cxx-abi itanium -g %s -o - | FileCheck %s // Check that this pointer type is TC<int> // CHECK: ![[LINE:[0-9]+]] = {{.*}}"TC<int>", {{.*}} metadata !"_ZTS2TCIiE"} ; [ DW_TAG_class_type ] |