diff options
author | Sean Callanan <scallanan@apple.com> | 2011-12-01 04:31:46 +0000 |
---|---|---|
committer | Sean Callanan <scallanan@apple.com> | 2011-12-01 04:31:46 +0000 |
commit | a5230ce303ef1a8da2339ce7bdbb14be23ecc2d0 (patch) | |
tree | 2005a050282003bf4fd71d8538a6f1988cef28d2 /lldb/scripts/build-llvm.pl | |
parent | eaeaf6f906c7cd2196800a5195256ca6839825f9 (diff) | |
download | bcm5719-llvm-a5230ce303ef1a8da2339ce7bdbb14be23ecc2d0.tar.gz bcm5719-llvm-a5230ce303ef1a8da2339ce7bdbb14be23ecc2d0.zip |
Picked up a new revision of Clang to pull in Objective-C
enhancements. With these enhancements, the return values
of Objective-C methods with unknown return types can be
implicitly cast to id for the purpose of making method
calls.
So what would have required this:
(int)[(id)[ClassWithNoDebugInfo methodReturningObject] methodReturningInt]
can now be written as:
(int)[[ClassWithNoDebugInfo methodReturningObject] methodReturningInt]
llvm-svn: 145567
Diffstat (limited to 'lldb/scripts/build-llvm.pl')
-rw-r--r-- | lldb/scripts/build-llvm.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/scripts/build-llvm.pl b/lldb/scripts/build-llvm.pl index 3e494fe3026..7e209ee3afb 100644 --- a/lldb/scripts/build-llvm.pl +++ b/lldb/scripts/build-llvm.pl @@ -21,8 +21,8 @@ our ($llvm_clang_basename, $llvm_clang_dirname) = fileparse ($llvm_clang_outfile our $llvm_configuration = $ENV{LLVM_CONFIGURATION}; -our $llvm_revision = "144982"; -our $clang_revision = "144982"; +our $llvm_revision = "145552"; +our $clang_revision = "145552"; our $SRCROOT = "$ENV{SRCROOT}"; our $llvm_dstroot_zip = "$SRCROOT/llvm.zip"; |