diff options
author | Fariborz Jahanian <fjahanian@apple.com> | 2009-05-17 16:49:27 +0000 |
---|---|---|
committer | Fariborz Jahanian <fjahanian@apple.com> | 2009-05-17 16:49:27 +0000 |
commit | 1e64a9531bf6e9d99ad3271b3a735ef702689b06 (patch) | |
tree | 6a23fa1e21360f6fb99cb862582bff564263a25d /test/Coverage/codegen-gnu.m | |
parent | a59077d3ac38d734b4188ac91ef40a7142093ac7 (diff) |
This patch fixes two bugs in the GNU Objective-C runtime implementation. One is a case in rethrowing exceptions where the C types don't match correctly (I already sent this patch to Daniel Dunbar, who found the bug, so it may have already been committed). The other fixes the case properties so that the methods generated as property accessors are added to the class structure correctly.
Patch by David Chisnall.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@71980 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Coverage/codegen-gnu.m')
-rw-r--r-- | test/Coverage/codegen-gnu.m | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/test/Coverage/codegen-gnu.m b/test/Coverage/codegen-gnu.m index 417f5ef99e..f042c442b1 100644 --- a/test/Coverage/codegen-gnu.m +++ b/test/Coverage/codegen-gnu.m @@ -1,7 +1,6 @@ // RUN: clang-cc -triple i386-unknown-unknown -DIRGENABLE_GNU -DIRGENABLE -fgnu-runtime -emit-llvm -o %t %s && // RUN: clang-cc -triple i386-unknown-unknown -DIRGENABLE_GNU -DIRGENABLE -g -fgnu-runtime -emit-llvm -o %t %s && -// FIXME: Remove once GNU can IRgen everything. -// RUN: not clang-cc -triple i386-unknown-unknown -fgnu-runtime -emit-llvm -o %t %s +// RUN: clang-cc -triple i386-unknown-unknown -fgnu-runtime -emit-llvm -o %t %s #include "objc-language-features.inc" |