diff options
| author | Fariborz Jahanian <fjahanian@apple.com> | 2011-02-28 19:55:59 +0000 |
|---|---|---|
| committer | Fariborz Jahanian <fjahanian@apple.com> | 2011-02-28 19:55:59 +0000 |
| commit | 79246322a6103e5435464e6e194f040157e13ba2 (patch) | |
| tree | bdeb693fb2787771b5f09aca405b53fcf7034890 /clang/test/CodeGenObjCXX/property-object-conditional-exp.mm | |
| parent | 9eb02dfa8931c9b6f2b60eafa0baf20ec5cf83a2 (diff) | |
| download | bcm5719-llvm-79246322a6103e5435464e6e194f040157e13ba2.tar.gz bcm5719-llvm-79246322a6103e5435464e6e194f040157e13ba2.zip | |
objc IRGen for Next runtime message API.
The prototype for objc_msgSend() is technically variadic -
`id objc_msgSend(id, SEL, ...)`.
But all method calls should use a prototype that matches the method,
not the prototype for objc_msgSend itself().
// rdar://9048030
llvm-svn: 126678
Diffstat (limited to 'clang/test/CodeGenObjCXX/property-object-conditional-exp.mm')
| -rw-r--r-- | clang/test/CodeGenObjCXX/property-object-conditional-exp.mm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/CodeGenObjCXX/property-object-conditional-exp.mm b/clang/test/CodeGenObjCXX/property-object-conditional-exp.mm index 826c351e79e..631158135b9 100644 --- a/clang/test/CodeGenObjCXX/property-object-conditional-exp.mm +++ b/clang/test/CodeGenObjCXX/property-object-conditional-exp.mm @@ -22,7 +22,7 @@ extern "C" bool CGRectIsEmpty(CGRect); CGRect dataRect; CGRect virtualBounds; -// CHECK: [[SRC:%.*]] = call %struct.CGRect bitcast (i8* (i8*, i8*, ...)* @objc_msgSend +// CHECK: [[SRC:%.*]] = call %struct.CGRect bitcast (i8* (i8*, i8*)* @objc_msgSend // CHECK-NEXT:store %struct.CGRect [[SRC]], %struct.CGRect* dataRect = CGRectIsEmpty(virtualBounds) ? self.bounds : virtualBounds; dataRect = CGRectIsEmpty(virtualBounds) ? [self bounds] : virtualBounds; |

