diff options
author | Filipe Cabecinhas <me@filcab.net> | 2015-08-05 06:19:26 +0000 |
---|---|---|
committer | Filipe Cabecinhas <me@filcab.net> | 2015-08-05 06:19:26 +0000 |
commit | 650d7f7dd50d0941da22b33aedfb5c4ab9573b34 (patch) | |
tree | 7ebf1d88a59da0f5e397c719295963dff3bb64f2 /clang/lib/CodeGen/CodeGenFunction.h | |
parent | 8e0784205dd7545bc5ab63ee1138b8f4d3653d66 (diff) | |
download | llvm-650d7f7dd50d0941da22b33aedfb5c4ab9573b34.zip llvm-650d7f7dd50d0941da22b33aedfb5c4ab9573b34.tar.gz llvm-650d7f7dd50d0941da22b33aedfb5c4ab9573b34.tar.bz2 |
Don't repeat function names in comments. NFC.
llvm-svn: 244018
Diffstat (limited to 'clang/lib/CodeGen/CodeGenFunction.h')
-rw-r--r-- | clang/lib/CodeGen/CodeGenFunction.h | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/clang/lib/CodeGen/CodeGenFunction.h b/clang/lib/CodeGen/CodeGenFunction.h index c463350..7306faa 100644 --- a/clang/lib/CodeGen/CodeGenFunction.h +++ b/clang/lib/CodeGen/CodeGenFunction.h @@ -2707,14 +2707,13 @@ public: /// scalar type, returning the result. llvm::Value *EmitScalarExpr(const Expr *E , bool IgnoreResultAssign = false); - /// EmitScalarConversion - Emit a conversion from the specified type to the - /// specified destination type, both of which are LLVM scalar types. + /// Emit a conversion from the specified type to the specified destination + /// type, both of which are LLVM scalar types. llvm::Value *EmitScalarConversion(llvm::Value *Src, QualType SrcTy, QualType DstTy); - /// EmitComplexToScalarConversion - Emit a conversion from the specified - /// complex type to the specified destination type, where the destination type - /// is an LLVM scalar type. + /// Emit a conversion from the specified complex type to the specified + /// destination type, where the destination type is an LLVM scalar type. llvm::Value *EmitComplexToScalarConversion(ComplexPairTy Src, QualType SrcTy, QualType DstTy); |