[llvm-commits] [llvm] r139154 - /llvm/trunk/lib/Target/X86/X86ISelLowering.cpp

Rafael Espindola rafael.espindola at gmail.com
Tue Sep 6 11:43:09 PDT 2011


Author: rafael
Date: Tue Sep  6 13:43:08 2011
New Revision: 139154

URL: http://llvm.org/viewvc/llvm-project?rev=139154&view=rev
Log:
Fix style issues and typos found by Duncan.

Modified:
    llvm/trunk/lib/Target/X86/X86ISelLowering.cpp

Modified: llvm/trunk/lib/Target/X86/X86ISelLowering.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/X86/X86ISelLowering.cpp?rev=139154&r1=139153&r2=139154&view=diff
==============================================================================
--- llvm/trunk/lib/Target/X86/X86ISelLowering.cpp (original)
+++ llvm/trunk/lib/Target/X86/X86ISelLowering.cpp Tue Sep  6 13:43:08 2011
@@ -8861,8 +8861,8 @@
   assert((Subtarget->isTargetCygMing() || Subtarget->isTargetWindows() ||
           EnableSegmentedStacks) &&
          "This should be used only on Windows targets or when segmented stacks "
-         "are being used.");
-  assert(!Subtarget->isTargetEnvMacho());
+         "are being used");
+  assert(!Subtarget->isTargetEnvMacho() && "Not implemented");
   DebugLoc dl = Op.getDebugLoc();
 
   // Get the inputs.
@@ -8879,7 +8879,7 @@
 
     if (Is64Bit) {
       // The 64 bit implementation of segmented stacks needs to clobber both r10
-      // r11. This makes it impossible to use it along with nested paramenters.
+      // r11. This makes it impossible to use it along with nested parameters.
       const Function *F = MF.getFunction();
 
       for (Function::const_arg_iterator I = F->arg_begin(), E = F->arg_end();





More information about the llvm-commits mailing list