diff options
author | David Blaikie <dblaikie@gmail.com> | 2014-08-21 21:01:00 +0000 |
---|---|---|
committer | David Blaikie <dblaikie@gmail.com> | 2014-08-21 21:01:00 +0000 |
commit | 9e095d9b6bf8a47c0b2ea6b792188f793efdb4a3 (patch) | |
tree | a973489b465ac22860ea176ceb77210901af424f /clang/tools | |
parent | addb75a4f32ce093a4939f4253a99deecdd1666f (diff) | |
download | bcm5719-llvm-9e095d9b6bf8a47c0b2ea6b792188f793efdb4a3.tar.gz bcm5719-llvm-9e095d9b6bf8a47c0b2ea6b792188f793efdb4a3.zip |
Update Clang for LLVM API change to use unique_ptr in SourceManager::AddNewSourceBuffer
llvm-svn: 216226
Diffstat (limited to 'clang/tools')
-rw-r--r-- | clang/tools/driver/cc1as_main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/tools/driver/cc1as_main.cpp b/clang/tools/driver/cc1as_main.cpp index 847eb890d40..91b66f578c4 100644 --- a/clang/tools/driver/cc1as_main.cpp +++ b/clang/tools/driver/cc1as_main.cpp @@ -295,7 +295,7 @@ static bool ExecuteAssembler(AssemblerInvocation &Opts, SourceMgr SrcMgr; // Tell SrcMgr about this buffer, which is what the parser will pick up. - SrcMgr.AddNewSourceBuffer(Buffer->release(), SMLoc()); + SrcMgr.AddNewSourceBuffer(std::move(*Buffer), SMLoc()); // Record the location of the include directories so that the lexer can find // it later. |