diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2013-12-12 16:07:11 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2013-12-12 16:07:11 +0000 |
commit | 34970697848274206ab8f4887a56de3fac513eda (patch) | |
tree | a5ce3a92bfd519ae60781f8d35b34af29cc621ae /clang/test/CodeGenCXX/copy-assign-synthesis-2.cpp | |
parent | 32cb5ac9041865aabd6d84ef410f52f07b309d1f (diff) | |
download | bcm5719-llvm-34970697848274206ab8f4887a56de3fac513eda.tar.gz bcm5719-llvm-34970697848274206ab8f4887a56de3fac513eda.zip |
Switch to the new MingW ABI.
GCC 4.7 changed the MingW ABI. On the clang side this means that methods now
have the thiscall calling convention by default.
llvm-svn: 197164
Diffstat (limited to 'clang/test/CodeGenCXX/copy-assign-synthesis-2.cpp')
-rw-r--r-- | clang/test/CodeGenCXX/copy-assign-synthesis-2.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/CodeGenCXX/copy-assign-synthesis-2.cpp b/clang/test/CodeGenCXX/copy-assign-synthesis-2.cpp index 18e92f98ebd..3829f383dde 100644 --- a/clang/test/CodeGenCXX/copy-assign-synthesis-2.cpp +++ b/clang/test/CodeGenCXX/copy-assign-synthesis-2.cpp @@ -1,4 +1,4 @@ // RUN: %clang_cc1 -emit-llvm %s -o - | FileCheck %s struct A {}; A& (A::*x)(const A&) = &A::operator=; -// CHECK-LABEL: define linkonce_odr %struct.A* @_ZN1AaSERKS_ +// CHECK-LABEL: define linkonce_odr {{.*}}%struct.A* @_ZN1AaSERKS_ |