diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2011-04-25 07:11:23 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2011-04-25 07:11:23 +0000 |
commit | a4a2a03c311e7a7b64bfba1ae714ae85f74999fd (patch) | |
tree | d6e6e64cb9f0ed51e70f7a94ce699434398b2886 /lib | |
parent | d03bcc1364177850c3b4974ed68ae2bfcbd38b61 (diff) | |
download | external_llvm-a4a2a03c311e7a7b64bfba1ae714ae85f74999fd.zip external_llvm-a4a2a03c311e7a7b64bfba1ae714ae85f74999fd.tar.gz external_llvm-a4a2a03c311e7a7b64bfba1ae714ae85f74999fd.tar.bz2 |
Remove some hard coded CR-LFs. Some of these were the entire files, one of
these was just one line of a file. Explicitly set the eol-style property on the
files to try and ensure this fix stays.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@130125 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Target/MBlaze/MBlazeISelLowering.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/MBlaze/MBlazeISelLowering.cpp b/lib/Target/MBlaze/MBlazeISelLowering.cpp index 585469b..21a5988 100644 --- a/lib/Target/MBlaze/MBlazeISelLowering.cpp +++ b/lib/Target/MBlaze/MBlazeISelLowering.cpp @@ -1103,7 +1103,7 @@ MBlazeTargetLowering::getSingleConstraintMatchWeight( switch (*constraint) { default: weight = TargetLowering::getSingleConstraintMatchWeight(info, constraint); - break;
+ break; case 'd': case 'y': if (type->isIntegerTy()) |