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
This commit is contained in:
Eric Christopher 2012-05-31 00:53:18 +00:00
parent f6a186ed0b
commit feba19309d

View File

@ -1025,7 +1025,7 @@ void MCAsmStreamer::EmitCFISignalFrame() {
if (!UseCFI)
return;
OS << "\t.cif_signal_frame";
OS << "\t.cfi_signal_frame";
EmitEOL();
}