[llvm-commits] [llvm] r59703 - in /llvm/trunk: autoconf/AutoRegen.sh lib/Target/CellSPU/SPUISelLowering.cpp
Scott Michel
scottm at aero.org
Wed Nov 19 20:26:26 PST 2008
Author: pingbak
Date: Wed Nov 19 22:26:21 2008
New Revision: 59703
URL: http://llvm.org/viewvc/llvm-project?rev=59703&view=rev
Log:
CellSPU: Adjust spacing/tabulation
Modified:
llvm/trunk/autoconf/AutoRegen.sh
llvm/trunk/lib/Target/CellSPU/SPUISelLowering.cpp
Modified: llvm/trunk/autoconf/AutoRegen.sh
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/autoconf/AutoRegen.sh?rev=59703&r1=59702&r2=59703&view=diff
==============================================================================
--- llvm/trunk/autoconf/AutoRegen.sh (original)
+++ llvm/trunk/autoconf/AutoRegen.sh Wed Nov 19 22:26:21 2008
@@ -7,7 +7,7 @@
### NOTE: ############################################################"
### The below two variables specify the auto* versions
### periods should be escaped with backslash, for use by grep
-want_autoconf_version='2\.60'
+want_autoconf_version='2\.6[01]'
want_autoheader_version=$want_autoconf_version
### END NOTE #########################################################"
@@ -22,7 +22,7 @@
test -f $configfile || die "Can't find 'autoconf' dir; please cd into it first"
autoconf --version | grep $want_autoconf_version > /dev/null
test $? -eq 0 || die "Your autoconf was not detected as being $want_autoconf_version_clean"
-aclocal --version | grep '^aclocal.*1\.9\.6' > /dev/null
+aclocal --version | grep '^aclocal.*\(1\.9\.6\|1\.10\)' > /dev/null
test $? -eq 0 || die "Your aclocal was not detected as being 1.9.6"
autoheader --version | grep '^autoheader.*'$want_autoheader_version > /dev/null
test $? -eq 0 || die "Your autoheader was not detected as being $want_autoheader_version_clean"
Modified: llvm/trunk/lib/Target/CellSPU/SPUISelLowering.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/CellSPU/SPUISelLowering.cpp?rev=59703&r1=59702&r2=59703&view=diff
==============================================================================
--- llvm/trunk/lib/Target/CellSPU/SPUISelLowering.cpp (original)
+++ llvm/trunk/lib/Target/CellSPU/SPUISelLowering.cpp Wed Nov 19 22:26:21 2008
@@ -135,19 +135,19 @@
setLoadExtAction(ISD::SEXTLOAD, MVT::i1, Promote);
setLoadExtAction(ISD::ZEXTLOAD, MVT::i1, Promote);
setTruncStoreAction(MVT::i8, MVT::i1, Promote);
- setTruncStoreAction(MVT::i16 , MVT::i1, Custom);
- setTruncStoreAction(MVT::i32 , MVT::i1, Custom);
- setTruncStoreAction(MVT::i64 , MVT::i1, Custom);
+ setTruncStoreAction(MVT::i16, MVT::i1, Custom);
+ setTruncStoreAction(MVT::i32, MVT::i1, Custom);
+ setTruncStoreAction(MVT::i64, MVT::i1, Custom);
setTruncStoreAction(MVT::i128, MVT::i1, Custom);
setLoadExtAction(ISD::EXTLOAD, MVT::i8, Custom);
setLoadExtAction(ISD::SEXTLOAD, MVT::i8, Custom);
setLoadExtAction(ISD::ZEXTLOAD, MVT::i8, Custom);
- setTruncStoreAction(MVT::i8 , MVT::i8, Custom);
- setTruncStoreAction(MVT::i16 , MVT::i8, Custom);
- setTruncStoreAction(MVT::i32 , MVT::i8, Custom);
- setTruncStoreAction(MVT::i64 , MVT::i8, Custom);
- setTruncStoreAction(MVT::i128, MVT::i8, Custom);
+ setTruncStoreAction(MVT::i8, MVT::i8, Custom);
+ setTruncStoreAction(MVT::i16, MVT::i8, Custom);
+ setTruncStoreAction(MVT::i32, MVT::i8, Custom);
+ setTruncStoreAction(MVT::i64, MVT::i8, Custom);
+ setTruncStoreAction(MVT::i128, MVT::i8, Custom);
setLoadExtAction(ISD::EXTLOAD, MVT::i16, Custom);
setLoadExtAction(ISD::SEXTLOAD, MVT::i16, Custom);
More information about the llvm-commits
mailing list