diff options
author | Anders Carlsson <andersca@mac.com> | 2009-08-25 13:14:46 +0000 |
---|---|---|
committer | Anders Carlsson <andersca@mac.com> | 2009-08-25 13:14:46 +0000 |
commit | 6c0a6e490c5f08bca231b601c4a4d14bd7385e52 (patch) | |
tree | 744ef012bf5c6bbd1a57043177093e4158d31bae | |
parent | 10ebe78730e6620060ccc05e9fefaecd671d7693 (diff) | |
download | bcm5719-llvm-6c0a6e490c5f08bca231b601c4a4d14bd7385e52.tar.gz bcm5719-llvm-6c0a6e490c5f08bca231b601c4a4d14bd7385e52.zip |
Emit conversion functions correctly.
llvm-svn: 79985
-rw-r--r-- | clang/lib/CodeGen/CodeGenModule.cpp | 1 | ||||
-rw-r--r-- | clang/test/CodeGenCXX/conversion-function.cpp | 9 |
2 files changed, 10 insertions, 0 deletions
diff --git a/clang/lib/CodeGen/CodeGenModule.cpp b/clang/lib/CodeGen/CodeGenModule.cpp index a92e6d92519..24b07ca3f43 100644 --- a/clang/lib/CodeGen/CodeGenModule.cpp +++ b/clang/lib/CodeGen/CodeGenModule.cpp @@ -1634,6 +1634,7 @@ void CodeGenModule::EmitTopLevelDecl(Decl *D) { return; switch (D->getKind()) { + case Decl::CXXConversion: case Decl::CXXMethod: case Decl::Function: // Skip function templates diff --git a/clang/test/CodeGenCXX/conversion-function.cpp b/clang/test/CodeGenCXX/conversion-function.cpp new file mode 100644 index 00000000000..57e5ad73151 --- /dev/null +++ b/clang/test/CodeGenCXX/conversion-function.cpp @@ -0,0 +1,9 @@ +// RUN: clang-cc %s -emit-llvm -o %t && +struct S { + operator int(); +}; + +// RUN: grep "_ZN1ScviEv" %t +S::operator int() { + return 10; +} |