aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorRafael Espindola <rafael.espindola@gmail.com>2011-09-06 18:43:08 +0000
committerRafael Espindola <rafael.espindola@gmail.com>2011-09-06 18:43:08 +0000
commit96428cea3d87aaac2e520a0df8f51c857ebf9cbd (patch)
treed646c1ff46af97202862f0669a2accdf42771d21 /lib
parentd8ab8e9707e6170218ce82516d15b36f54b4bc1c (diff)
Fix style issues and typos found by Duncan.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@139154 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/Target/X86/X86ISelLowering.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Target/X86/X86ISelLowering.cpp b/lib/Target/X86/X86ISelLowering.cpp
index fa5f720ef0..d220c59430 100644
--- a/lib/Target/X86/X86ISelLowering.cpp
+++ b/lib/Target/X86/X86ISelLowering.cpp
@@ -8861,8 +8861,8 @@ X86TargetLowering::LowerDYNAMIC_STACKALLOC(SDValue Op,
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 @@ X86TargetLowering::LowerDYNAMIC_STACKALLOC(SDValue Op,
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();