aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/MC/MCStreamer.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2010-01-25 18:58:59 +0000
committerChris Lattner <sabre@nondot.org>2010-01-25 18:58:59 +0000
commit59be4eabff2c209e35841e2fea9596f0c35c4c72 (patch)
tree9fc791f856e67f36af15b2103a478ebdc379f484 /include/llvm/MC/MCStreamer.h
parent9f8ef90c755b6b2b00fb3d07eb196a7fb9374949 (diff)
downloadexternal_llvm-59be4eabff2c209e35841e2fea9596f0c35c4c72.zip
external_llvm-59be4eabff2c209e35841e2fea9596f0c35c4c72.tar.gz
external_llvm-59be4eabff2c209e35841e2fea9596f0c35c4c72.tar.bz2
mcstreamerize .file and .file. This also fixes an issue where the
normal form of .file would fail if the filename had a weird character in it. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94437 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/MC/MCStreamer.h')
-rw-r--r--include/llvm/MC/MCStreamer.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/include/llvm/MC/MCStreamer.h b/include/llvm/MC/MCStreamer.h
index 09df6fa..cb8196e 100644
--- a/include/llvm/MC/MCStreamer.h
+++ b/include/llvm/MC/MCStreamer.h
@@ -233,6 +233,15 @@ namespace llvm {
unsigned char Value = 0) = 0;
/// @}
+
+ /// EmitFileDirective - Switch to a new logical file. This is used to
+ /// implement the '.file "foo.c"' assembler directive.
+ virtual void EmitFileDirective(StringRef Filename) = 0;
+
+ /// EmitDwarfFileDirective - Associate a filename with a specified logical
+ /// file number. This implements the DWARF2 '.file 4 "foo.c"' assembler
+ /// directive.
+ virtual void EmitDwarfFileDirective(unsigned FileNo,StringRef Filename) = 0;
/// EmitInstruction - Emit the given @param Instruction into the current
/// section.