diff options
| author | Sanjay Patel <spatel@rotateright.com> | 2016-01-18 22:15:33 +0000 |
|---|---|---|
| committer | Sanjay Patel <spatel@rotateright.com> | 2016-01-18 22:15:33 +0000 |
| commit | 846b63b4369238fffab16c3c7b2e1db4c46a8fcd (patch) | |
| tree | 9e8f90f88a2767ca51d06d0da4ec375fc0cc1ca9 /clang/lib | |
| parent | 33e3ecee0c44169f11d1fc4472250c1346e68a4e (diff) | |
| download | bcm5719-llvm-846b63b4369238fffab16c3c7b2e1db4c46a8fcd.tar.gz bcm5719-llvm-846b63b4369238fffab16c3c7b2e1db4c46a8fcd.zip | |
fix formatting; NFC
llvm-svn: 258097
Diffstat (limited to 'clang/lib')
| -rw-r--r-- | clang/lib/CodeGen/CGCall.cpp | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/clang/lib/CodeGen/CGCall.cpp b/clang/lib/CodeGen/CGCall.cpp index 935985049c0..715e8e7aadc 100644 --- a/clang/lib/CodeGen/CGCall.cpp +++ b/clang/lib/CodeGen/CGCall.cpp @@ -3046,8 +3046,7 @@ CodeGenFunction::EmitRuntimeCall(llvm::Value *callee, return EmitRuntimeCall(callee, None, name); } -/// Emits a simple call (never an invoke) to the given runtime -/// function. +/// Emits a simple call (never an invoke) to the given runtime function. llvm::CallInst * CodeGenFunction::EmitRuntimeCall(llvm::Value *callee, ArrayRef<llvm::Value*> args, @@ -3060,10 +3059,10 @@ CodeGenFunction::EmitRuntimeCall(llvm::Value *callee, // Calls which may throw must have operand bundles indicating which funclet // they are nested within. static void -getBundlesForFunclet(llvm::Value *Callee, - llvm::Instruction *CurrentFuncletPad, +getBundlesForFunclet(llvm::Value *Callee, llvm::Instruction *CurrentFuncletPad, SmallVectorImpl<llvm::OperandBundleDef> &BundleList) { - // There is no need for a funclet operand bundle if we aren't inside a funclet. + // There is no need for a funclet operand bundle if we aren't inside a + // funclet. if (!CurrentFuncletPad) return; @@ -3098,8 +3097,7 @@ void CodeGenFunction::EmitNoreturnRuntimeCallOrInvoke(llvm::Value *callee, } } -/// Emits a call or invoke instruction to the given nullary runtime -/// function. +/// Emits a call or invoke instruction to the given nullary runtime function. llvm::CallSite CodeGenFunction::EmitRuntimeCallOrInvoke(llvm::Value *callee, const Twine &name) { |

