diff options
author | Reid Kleckner <rnk@google.com> | 2017-10-10 00:57:36 +0000 |
---|---|---|
committer | Reid Kleckner <rnk@google.com> | 2017-10-10 00:57:36 +0000 |
commit | ab23dace567394515566c13d44dc85acc249651a (patch) | |
tree | 7075c6aff990774313bb1a1728c62a7b86c2bbbe /llvm/test/CodeGen/X86/inline-asm-fpstack.ll | |
parent | a11b983e11057651613305da1d10a13fc77ffd13 (diff) | |
download | bcm5719-llvm-ab23dace567394515566c13d44dc85acc249651a.tar.gz bcm5719-llvm-ab23dace567394515566c13d44dc85acc249651a.zip |
[MC] Suppress .Lcfi labels when emitting textual assembly
Summary:
This suppresses the generation of .Lcfi labels in our textual assembler.
It was annoying that this generated cascading .Lcfi labels:
llc foo.ll -o - | llvm-mc | llvm-mc
After three trips through MCAsmStreamer, we'd have three labels in the
output when none are necessary. We should only bother creating the
labels and frame data when making a real object file.
This supercedes D38605, which moved the entire .seh_ implementation into
MCObjectStreamer.
This has the advantage that we do more checking when emitting textual
assembly, as a minor efficiency cost. Outputting textual assembly is not
performance critical, so this shouldn't matter.
Reviewers: majnemer, MatzeB
Subscribers: qcolombet, nemanjai, javed.absar, eraman, hiraditya, JDevlieghere, llvm-commits
Differential Revision: https://reviews.llvm.org/D38638
llvm-svn: 315259
Diffstat (limited to 'llvm/test/CodeGen/X86/inline-asm-fpstack.ll')
-rw-r--r-- | llvm/test/CodeGen/X86/inline-asm-fpstack.ll | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/llvm/test/CodeGen/X86/inline-asm-fpstack.ll b/llvm/test/CodeGen/X86/inline-asm-fpstack.ll index b107aa09d25..f873b708f20 100644 --- a/llvm/test/CodeGen/X86/inline-asm-fpstack.ll +++ b/llvm/test/CodeGen/X86/inline-asm-fpstack.ll @@ -156,7 +156,6 @@ define void @testPR4459(x86_fp80 %a) { ; CHECK-LABEL: testPR4459: ; CHECK: ## BB#0: ## %entry ; CHECK-NEXT: subl $28, %esp -; CHECK-NEXT: Lcfi0: ; CHECK-NEXT: .cfi_def_cfa_offset 32 ; CHECK-NEXT: fldt {{[0-9]+}}(%esp) ; CHECK-NEXT: fstpt (%esp) @@ -185,7 +184,6 @@ define void @testPR4484(x86_fp80 %a) { ; CHECK-LABEL: testPR4484: ; CHECK: ## BB#0: ## %entry ; CHECK-NEXT: subl $28, %esp -; CHECK-NEXT: Lcfi1: ; CHECK-NEXT: .cfi_def_cfa_offset 32 ; CHECK-NEXT: fldt {{[0-9]+}}(%esp) ; CHECK-NEXT: fstpt {{[0-9]+}}(%esp) ## 10-byte Folded Spill @@ -454,7 +452,6 @@ define void @test_live_st(i32 %a1) { ; CHECK-LABEL: test_live_st: ; CHECK: ## BB#0: ## %entry ; CHECK-NEXT: subl $12, %esp -; CHECK-NEXT: Lcfi2: ; CHECK-NEXT: .cfi_def_cfa_offset 16 ; CHECK-NEXT: fldt (%eax) ; CHECK-NEXT: cmpl $1, {{[0-9]+}}(%esp) |