diff options
author | Ed Maste <emaste@freebsd.org> | 2014-05-08 13:01:26 +0000 |
---|---|---|
committer | Ed Maste <emaste@freebsd.org> | 2014-05-08 13:01:26 +0000 |
commit | 279b97c130134b4071eff465eef989a9a7ed542f (patch) | |
tree | 476a48eade779628ebb583a6b45527c860e4c6d9 /clang/test | |
parent | 6b008bf20536ff9fdc94e6a4ceec9be29baf19c4 (diff) | |
download | bcm5719-llvm-279b97c130134b4071eff465eef989a9a7ed542f.tar.gz bcm5719-llvm-279b97c130134b4071eff465eef989a9a7ed542f.zip |
Enable standalone-debug by default on FreeBSD
It was set by default on Darwin in r198655. The same usability issues
with DTrace and LLDB apply to FreeBSD, so set it by default there too.
rdar://problem/15758808
http://llvm.org/pr19676
Differential Revision: http://reviews.llvm.org/D3448
llvm-svn: 208310
Diffstat (limited to 'clang/test')
-rw-r--r-- | clang/test/CodeGenCXX/debug-info-vtable-optzn.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/clang/test/CodeGenCXX/debug-info-vtable-optzn.cpp b/clang/test/CodeGenCXX/debug-info-vtable-optzn.cpp index 8a6d4ff3e0f..c693f794b26 100644 --- a/clang/test/CodeGenCXX/debug-info-vtable-optzn.cpp +++ b/clang/test/CodeGenCXX/debug-info-vtable-optzn.cpp @@ -1,8 +1,9 @@ // RUN: %clang_cc1 -emit-llvm -g -triple x86_64-apple-darwin %s -o - | FileCheck %s +// RUN: %clang_cc1 -emit-llvm -g -triple amd64-unknown-freebsd %s -o - | FileCheck %s // // This tests that the "emit debug info for a C++ class only in the // module that has its vtable" optimization is disabled by default on -// Darwin. +// Darwin and FreeBSD. // // CHECK: [ DW_TAG_member ] [lost] class A |