diff options
author | Reid Kleckner <rnk@google.com> | 2018-03-16 20:37:59 +0000 |
---|---|---|
committer | Reid Kleckner <rnk@google.com> | 2018-03-16 20:37:59 +0000 |
commit | 1a0c39ae0b55b3075de512e32f08388dc261174a (patch) | |
tree | 274c60fc979cdccd7efd754493a7159b99547615 | |
parent | fb93154bf147513339409e3640372ca3453060eb (diff) | |
download | bcm5719-llvm-1a0c39ae0b55b3075de512e32f08388dc261174a.tar.gz bcm5719-llvm-1a0c39ae0b55b3075de512e32f08388dc261174a.zip |
[MS] Commit some changes that were intended to be part of r327738
llvm-svn: 327739
-rw-r--r-- | clang/test/CodeGenCXX/regcall.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/test/CodeGenCXX/regcall.cpp b/clang/test/CodeGenCXX/regcall.cpp index aa1d5cce627..a9af4a4b302 100644 --- a/clang/test/CodeGenCXX/regcall.cpp +++ b/clang/test/CodeGenCXX/regcall.cpp @@ -76,8 +76,8 @@ bool __regcall operator ==(const test_class&, const test_class&){ --x; return fa test_class __regcall operator""_test_class (unsigned long long) { ++x; return test_class{};} // CHECK-LIN64-DAG: define x86_regcallcc void @_Zli11_test_classy(%class.test_class* noalias sret %agg.result, i64) // CHECK-LIN32-DAG: define x86_regcallcc void @_Zli11_test_classy(%class.test_class* inreg noalias sret %agg.result, i64) -// CHECK-WIN64-DAG: \01??__K_test_class@@Yw?AVtest_class@@_K@Z" -// CHECK-WIN32-DAG: \01??__K_test_class@@Yw?AVtest_class@@_K@Z" +// CHECK-WIN64-DAG: ??__K_test_class@@Yw?AVtest_class@@_K@Z" +// CHECK-WIN32-DAG: ??__K_test_class@@Yw?AVtest_class@@_K@Z" template<typename T> void __regcall freeTempFunc(T i){} |