1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-18 18:42:46 +02:00

Fix typo in assembly directive. Noticed by inspection.

llvm-svn: 157726
This commit is contained in:
Eric Christopher 2012-05-31 00:53:18 +00:00
parent 0f0b2fa29f
commit a50a5fb980

View File

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