Fix spelling, patch contributed by Gabor Greif!
authorChris Lattner <sabre@nondot.org>
Sun, 27 Feb 2005 06:18:25 +0000 (06:18 +0000)
committerChris Lattner <sabre@nondot.org>
Sun, 27 Feb 2005 06:18:25 +0000 (06:18 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@20343 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Bytecode/Writer/Writer.cpp
lib/Target/X86/X86InstrInfo.td
lib/Transforms/IPO/RaiseAllocations.cpp
lib/Transforms/Utils/SimplifyCFG.cpp
tools/bugpoint/Miscompilation.cpp

index 98a4234a4105a677283616665847cbe7ae0a52a0..5218c9e8c9b4a1399aebac678604e5e41195a270 100644 (file)
@@ -424,7 +424,7 @@ void BytecodeWriter::outputConstantStrings() {
 //===----------------------------------------------------------------------===//
 typedef unsigned char uchar;
 
-// outputInstructionFormat0 - Output those wierd instructions that have a large
+// outputInstructionFormat0 - Output those weird instructions that have a large
 // number of operands or have large operands themselves...
 //
 // Format: [opcode] [type] [numargs] [arg0] [arg1] ... [arg<numargs-1>]
index ff9e495e43e62151bbed458cda6dc060f23ec6bc..285a806de7e32e4c65ea8be6f0cb528c55715de8 100644 (file)
@@ -1549,7 +1549,7 @@ def FADDPrST0  : FPrST0PInst<0xC0, (ops RST:$op),
 
 // NOTE: GAS and apparently all other AT&T style assemblers have a broken notion
 // of some of the 'reverse' forms of the fsub and fdiv instructions.  As such,
-// we have to put some 'r's in and take them out of wierd places.
+// we have to put some 'r's in and take them out of weird places.
 def FSUBRST0r  : FPST0rInst <0xE8, (ops RST:$op),
                              "fsubr $op">;
 def FSUBrST0   : FPrST0Inst <0xE8, (ops RST:$op),
index 4d5650f90aae95f927ddb9bbd950b261f4bd92e3..8a35bc39e6b5e644e7a3878d34bdb67aecf6db82 100644 (file)
@@ -186,7 +186,7 @@ bool RaiseAllocations::runOnModule(Module &M) {
           
           // If no prototype was provided for free, we may need to cast the
           // source pointer.  This should be really uncommon, but it's necessary
-          // just in case we are dealing with wierd code like this:
+          // just in case we are dealing with weird code like this:
           //   free((long)ptr);
           //
           Value *Source = *CS.arg_begin();
index 870a90143b0cfe9e871edcedc19aaa15a165f78a..4954c7262a3f030331fd8ae685d8f64b083aadbe 100644 (file)
@@ -196,7 +196,7 @@ static bool DominatesMergePoint(Value *V, BasicBlock *BB,
   if (!I) return true;    // Non-instructions all dominate instructions.
   BasicBlock *PBB = I->getParent();
 
-  // We don't want to allow wierd loops that might have the "if condition" in
+  // We don't want to allow weird loops that might have the "if condition" in
   // the bottom of this block.
   if (PBB == BB) return false;
 
index b69cbd12003f4d77898f40c78db8ac8a66fa7873..b1707042b8c20b11b88ab334d17159fe8f45d6d8 100644 (file)
@@ -425,7 +425,7 @@ static bool ExtractBlocks(BugDriver &BD,
                                                 MiscompiledFunctions);
   Module *Extracted = BD.ExtractMappedBlocksFromModule(Blocks, ToExtract);
   if (Extracted == 0) {
-    // Wierd, extraction should have worked.
+    // Weird, extraction should have worked.
     std::cerr << "Nondeterministic problem extracting blocks??\n";
     delete ProgClone;
     delete ToExtract;