From: John McCall Date: Tue, 7 Dec 2010 22:55:51 +0000 (+0000) Subject: Test case. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d50187dc8c26053ba0b8366499a667e736197e17;p=clang Test case. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@121194 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/CodeGenObjCXX/property-dot-reference.mm b/test/CodeGenObjCXX/property-dot-reference.mm index a6a243e660..6b53639f54 100644 --- a/test/CodeGenObjCXX/property-dot-reference.mm +++ b/test/CodeGenObjCXX/property-dot-reference.mm @@ -57,3 +57,6 @@ void test2() { // CHECK: call double bitcast // CHECK: call i32 bitcast // CHECK: call double bitcast + +// PR8751 +int test3(Test2 *obj) { return obj.myProperty; }