diff options
Diffstat (limited to 'clang/lib/CodeGen/TargetInfo.h')
-rw-r--r-- | clang/lib/CodeGen/TargetInfo.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/clang/lib/CodeGen/TargetInfo.h b/clang/lib/CodeGen/TargetInfo.h index 8f90c7bdd92..eabc37b464e 100644 --- a/clang/lib/CodeGen/TargetInfo.h +++ b/clang/lib/CodeGen/TargetInfo.h @@ -32,6 +32,7 @@ namespace clang { namespace CodeGen { class CodeGenModule; class CodeGenFunction; + class CGFunctionInfo; } /// TargetCodeGenInfo - This class organizes various target-specific @@ -160,7 +161,7 @@ namespace clang { /// same way and some out-of-band information is passed for the /// benefit of variadic callees, as is the case for x86-64. /// In this case the ABI should be consulted. - virtual bool isNoProtoCallVariadic(CallingConv CC) const; + virtual bool isNoProtoCallVariadic(const CodeGen::CGFunctionInfo &) const; }; } |