diff options
author | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2010-11-19 00:19:18 +0000 |
---|---|---|
committer | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2010-11-19 00:19:18 +0000 |
commit | e8f0ba75a39b2fa2d34d14e8401ae96f43e1fc14 (patch) | |
tree | 2924560b282213cf27fbda803b0cd80c3c4ce40a /tools/driver/cc1as_main.cpp | |
parent | 8fc32d272bd57b0a59f61c874cb7b56d9005e89e (diff) |
getNumErrors() -> hasErrorOccurred()
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@119765 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/driver/cc1as_main.cpp')
-rw-r--r-- | tools/driver/cc1as_main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/driver/cc1as_main.cpp b/tools/driver/cc1as_main.cpp index 6159f4b192..fb68d07ab2 100644 --- a/tools/driver/cc1as_main.cpp +++ b/tools/driver/cc1as_main.cpp @@ -368,7 +368,7 @@ int cc1as_main(const char **ArgBegin, const char **ArgEnd, // Execute the invocation, unless there were parsing errors. bool Success = false; - if (!Diags.getNumErrors()) + if (!Diags.hasErrorOccurred()) Success = ExecuteAssembler(Asm, Diags); // If any timers were active but haven't been destroyed yet, print their |