diff options
author | Eric Christopher <echristo@apple.com> | 2012-05-31 00:53:18 +0000 |
---|---|---|
committer | Eric Christopher <echristo@apple.com> | 2012-05-31 00:53:18 +0000 |
commit | feba19309de49f03f29bb6fcc3496e640efe6d92 (patch) | |
tree | e0ca405ff1c27f1f1f3661e7fa000270ad666df1 | |
parent | f6a186ed0bd3fecf1a7cd506574a8b219e5d55b9 (diff) |
Fix typo in assembly directive. Noticed by inspection.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@157726 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/MC/MCAsmStreamer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/MC/MCAsmStreamer.cpp b/lib/MC/MCAsmStreamer.cpp index 9497b6be49..1b7d037568 100644 --- a/lib/MC/MCAsmStreamer.cpp +++ b/lib/MC/MCAsmStreamer.cpp @@ -1025,7 +1025,7 @@ void MCAsmStreamer::EmitCFISignalFrame() { if (!UseCFI) return; - OS << "\t.cif_signal_frame"; + OS << "\t.cfi_signal_frame"; EmitEOL(); } |