diff options
author | Reid Kleckner <rnk@google.com> | 2016-11-30 00:31:16 +0000 |
---|---|---|
committer | Reid Kleckner <rnk@google.com> | 2016-11-30 00:31:16 +0000 |
commit | 6fd35373eab6f264ebad6898aef23eca9481b50a (patch) | |
tree | 0e54e51b6259776c79635ca8f7b68d8f4841cccc /clang/test/Frontend/plugin-vs-debug-info.cpp | |
parent | 15241ba4dd8009cd89676f6f280d5de870e958ab (diff) | |
download | bcm5719-llvm-6fd35373eab6f264ebad6898aef23eca9481b50a.tar.gz bcm5719-llvm-6fd35373eab6f264ebad6898aef23eca9481b50a.zip |
Give this test that uses Itanium mangling a triple
llvm-svn: 288222
Diffstat (limited to 'clang/test/Frontend/plugin-vs-debug-info.cpp')
-rw-r--r-- | clang/test/Frontend/plugin-vs-debug-info.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/clang/test/Frontend/plugin-vs-debug-info.cpp b/clang/test/Frontend/plugin-vs-debug-info.cpp index dceb2f1d5a3..27631e5ba57 100644 --- a/clang/test/Frontend/plugin-vs-debug-info.cpp +++ b/clang/test/Frontend/plugin-vs-debug-info.cpp @@ -2,8 +2,10 @@ // happens to use a RecursiveASTVisitor that forces deserialization of AST // files. // -// RUN: %clang_cc1 -fdelayed-template-parsing -std=c++14 -emit-pch -o %t.pch %s -// RUN: %clang_cc1 -load %llvmshlibdir/PrintFunctionNames%pluginext \ +// RUN: %clang_cc1 -triple %itanium_abi_triple -fdelayed-template-parsing \ +// RUN: -std=c++14 -emit-pch -o %t.pch %s +// RUN: %clang_cc1 -triple %itanium_abi_triple \ +// RUN: -load %llvmshlibdir/PrintFunctionNames%pluginext \ // RUN: -add-plugin print-fns -std=c++14 -include-pch %t.pch %s -emit-llvm \ // RUN: -fdelayed-template-parsing -debug-info-kind=limited \ // RUN: -o %t.ll 2>&1 | FileCheck --check-prefix=DECLS %s |