r288222 - Give this test that uses Itanium mangling a triple

Reid Kleckner via cfe-commits cfe-commits at lists.llvm.org
Tue Nov 29 16:31:17 PST 2016


Author: rnk
Date: Tue Nov 29 18:31:16 2016
New Revision: 288222

URL: http://llvm.org/viewvc/llvm-project?rev=288222&view=rev
Log:
Give this test that uses Itanium mangling a triple

Modified:
    cfe/trunk/test/Frontend/plugin-vs-debug-info.cpp

Modified: cfe/trunk/test/Frontend/plugin-vs-debug-info.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Frontend/plugin-vs-debug-info.cpp?rev=288222&r1=288221&r2=288222&view=diff
==============================================================================
--- cfe/trunk/test/Frontend/plugin-vs-debug-info.cpp (original)
+++ cfe/trunk/test/Frontend/plugin-vs-debug-info.cpp Tue Nov 29 18:31:16 2016
@@ -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




More information about the cfe-commits mailing list