From: Scott Michel Date: Wed, 12 Dec 2007 02:38:28 +0000 (+0000) Subject: Correct typo for Linux: s/esp/%rsp/ X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=a28c6bfef3ec35160bdf928f1dc55fba35091dd0;p=oota-llvm.git Correct typo for Linux: s/esp/%rsp/ git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@44904 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/X86/X86JITInfo.cpp b/lib/Target/X86/X86JITInfo.cpp index 29121555090..fb121c7fcbc 100644 --- a/lib/Target/X86/X86JITInfo.cpp +++ b/lib/Target/X86/X86JITInfo.cpp @@ -116,7 +116,7 @@ extern "C" { "movaps (%rsp), %xmm0\n" // Restore RSP "movq %rbp, %rsp\n" - CFI(".cfi_def_cfa_register esp\n") + CFI(".cfi_def_cfa_register %rsp\n") // Restore all int arg registers "subq $48, %rsp\n" CFI(".cfi_adjust_cfa_offset 48\n")