aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorNick Lewycky <nicholas@mxc.ca>2009-03-08 00:57:09 +0000
committerNick Lewycky <nicholas@mxc.ca>2009-03-08 00:57:09 +0000
commit464bb782fb9f873414b4ec01698c88b411564430 (patch)
tree567474d27623d5718e66ed786dc22b47da3a9b4c /include
parent6f6923fd4fdab46c88503c71548e076dd7373b74 (diff)
downloadexternal_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.h8
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);
}