[llvm-commits] [llvm-gcc-4.2] r78326 - /llvm-gcc-4.2/trunk/gcc/llvm-convert.cpp

Dale Johannesen dalej at apple.com
Thu Aug 6 10:31:03 PDT 2009


Author: johannes
Date: Thu Aug  6 12:31:03 2009
New Revision: 78326

URL: http://llvm.org/viewvc/llvm-project?rev=78326&view=rev
Log:
fix comment cut/paste error in previous commit.


Modified:
    llvm-gcc-4.2/trunk/gcc/llvm-convert.cpp

Modified: llvm-gcc-4.2/trunk/gcc/llvm-convert.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm-gcc-4.2/trunk/gcc/llvm-convert.cpp?rev=78326&r1=78325&r2=78326&view=diff

==============================================================================
--- llvm-gcc-4.2/trunk/gcc/llvm-convert.cpp (original)
+++ llvm-gcc-4.2/trunk/gcc/llvm-convert.cpp Thu Aug  6 12:31:03 2009
@@ -7103,7 +7103,7 @@
     const unsigned *InStr = (const unsigned *)TREE_STRING_POINTER(exp);
     for (unsigned i = 0; i != Len/4; ++i) {
       // gcc has constructed the initializer elements in the target endianness,
-      // but we're going to treat them as ordinary shorts from here, with
+      // but we're going to treat them as ordinary ints from here, with
       // host endianness.  Adjust if necessary.
       if (llvm::sys::isBigEndianHost() == BYTES_BIG_ENDIAN)
         Elts.push_back(ConstantInt::get(Type::Int32Ty, InStr[i]));





More information about the llvm-commits mailing list