aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/CodeGen
diff options
context:
space:
mode:
authorEric Christopher <echristo@apple.com>2011-09-13 23:45:39 +0000
committerEric Christopher <echristo@apple.com>2011-09-13 23:45:39 +0000
commite640a228f6b1ff280d35a6a33bf78c7e544f9926 (patch)
treec1e631f6fc1e3ef4f0248c1aae6fb6a6d9b7cdfd /include/llvm/CodeGen
parentf1c21a8da6ed27a6ab4944e30bbeb4bd3ee08a71 (diff)
downloadexternal_llvm-e640a228f6b1ff280d35a6a33bf78c7e544f9926.zip
external_llvm-e640a228f6b1ff280d35a6a33bf78c7e544f9926.tar.gz
external_llvm-e640a228f6b1ff280d35a6a33bf78c7e544f9926.tar.bz2
Fix indenting.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@139670 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen')
-rw-r--r--include/llvm/CodeGen/ValueTypes.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/CodeGen/ValueTypes.h b/include/llvm/CodeGen/ValueTypes.h
index f314520..cae0bcb 100644
--- a/include/llvm/CodeGen/ValueTypes.h
+++ b/include/llvm/CodeGen/ValueTypes.h
@@ -144,14 +144,14 @@ namespace llvm {
/// isFloatingPoint - Return true if this is a FP, or a vector FP type.
bool isFloatingPoint() const {
return ((SimpleTy >= MVT::f32 && SimpleTy <= MVT::ppcf128) ||
- (SimpleTy >= MVT::v2f32 && SimpleTy <= MVT::v4f64));
+ (SimpleTy >= MVT::v2f32 && SimpleTy <= MVT::v4f64));
}
/// isInteger - Return true if this is an integer, or a vector integer type.
bool isInteger() const {
return ((SimpleTy >= MVT::FIRST_INTEGER_VALUETYPE &&
SimpleTy <= MVT::LAST_INTEGER_VALUETYPE) ||
- (SimpleTy >= MVT::v2i8 && SimpleTy <= MVT::v8i64));
+ (SimpleTy >= MVT::v2i8 && SimpleTy <= MVT::v8i64));
}
/// isVector - Return true if this is a vector value type.