mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-31 12:41:49 +01:00
Fix spelling, patch contributed by Gabor Greif!
llvm-svn: 20343
This commit is contained in:
parent
cf3862ce8d
commit
a024984017
@ -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>]
|
||||
|
@ -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),
|
||||
|
@ -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();
|
||||
|
@ -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;
|
||||
|
||||
|
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user