diff options
author | Nick Lewycky <nicholas@mxc.ca> | 2009-03-08 00:57:09 +0000 |
---|---|---|
committer | Nick Lewycky <nicholas@mxc.ca> | 2009-03-08 00:57:09 +0000 |
commit | 464bb782fb9f873414b4ec01698c88b411564430 (patch) | |
tree | 567474d27623d5718e66ed786dc22b47da3a9b4c /include | |
parent | 6f6923fd4fdab46c88503c71548e076dd7373b74 (diff) | |
download | external_llvm-464bb782fb9f873414b4ec01698c88b411564430.zip external_llvm-464bb782fb9f873414b4ec01698c88b411564430.tar.gz external_llvm-464bb782fb9f873414b4ec01698c88b411564430.tar.bz2 |
Fix misaligned whitespace. No functionality change.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@66355 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/Analysis/ValueTracking.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/llvm/Analysis/ValueTracking.h b/include/llvm/Analysis/ValueTracking.h index 8c27b23..5f5f77a 100644 --- a/include/llvm/Analysis/ValueTracking.h +++ b/include/llvm/Analysis/ValueTracking.h @@ -62,14 +62,14 @@ namespace llvm { /// If InsertBefore is not null, this function will duplicate (modified) /// insertvalues when a part of a nested struct is extracted. Value *FindInsertedValue(Value *V, - const unsigned *idx_begin, - const unsigned *idx_end, - Instruction *InsertBefore = 0); + const unsigned *idx_begin, + const unsigned *idx_end, + Instruction *InsertBefore = 0); /// This is a convenience wrapper for finding values indexed by a single index /// only. inline Value *FindInsertedValue(Value *V, const unsigned Idx, - Instruction *InsertBefore = 0) { + Instruction *InsertBefore = 0) { const unsigned Idxs[1] = { Idx }; return FindInsertedValue(V, &Idxs[0], &Idxs[1], InsertBefore); } |