commit | b1b1b8ab712519e595d4fa0e38d3cab828eb69df | [log] [tgz] |
---|---|---|
author | Enea Zaffanella <zaffanella@cs.unipr.it> | Thu Nov 07 08:14:26 2013 +0000 |
committer | Enea Zaffanella <zaffanella@cs.unipr.it> | Thu Nov 07 08:14:26 2013 +0000 |
tree | 12075d7ac9999840ae960716de2e09a9c7201a04 | |
parent | b3d939902a287fc1354da101349ffdd6830cb0a7 [diff] [blame] |
Fixed bug in return type of __builtin_va_start(). llvm-svn: 194197
diff --git a/clang/lib/Sema/SemaChecking.cpp b/clang/lib/Sema/SemaChecking.cpp index b1da24b..5fe2d03 100644 --- a/clang/lib/Sema/SemaChecking.cpp +++ b/clang/lib/Sema/SemaChecking.cpp
@@ -1651,6 +1651,7 @@ Diag(ParamLoc, diag::note_parameter_type) << Type; } + TheCall->setType(Context.VoidTy); return false; }