summaryrefslogtreecommitdiffstats
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
commit97095d68a6734602a5930fcd412e0bc082e672b1 (patch)
treebadc0d840dad96521f733a4f1bc4ea1d76265d8f
parent7255361320465608c06c08b64c83fb04747ca6dd (diff)
downloadbcm5719-llvm-97095d68a6734602a5930fcd412e0bc082e672b1.tar.gz
bcm5719-llvm-97095d68a6734602a5930fcd412e0bc082e672b1.zip
Fix indenting.
llvm-svn: 139670
-rw-r--r--llvm/include/llvm/CodeGen/ValueTypes.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/include/llvm/CodeGen/ValueTypes.h b/llvm/include/llvm/CodeGen/ValueTypes.h
index f314520ffe1..cae0bcb165c 100644
--- a/llvm/include/llvm/CodeGen/ValueTypes.h
+++ b/llvm/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.
OpenPOWER on IntegriCloud