@@ -93,37 +93,6 @@ inline ModulePass *createDataFlowSanitizerPassForJIT(StringRef ABIListFile =
93
93
// checking on loads, stores, and other memory intrinsics.
94
94
FunctionPass *createBoundsCheckingPass ();
95
95
96
- // / createDebugIRPass - Enable interactive stepping through LLVM IR in LLDB (or
97
- // / GDB) and generate a file with the LLVM IR to be
98
- // / displayed in the debugger.
99
- // /
100
- // / Existing debug metadata is preserved (but may be modified) in order to allow
101
- // / accessing variables in the original source. The line table and file
102
- // / information is modified to correspond to the lines in the LLVM IR. If
103
- // / Filename and Directory are empty, a file name is generated based on existing
104
- // / debug information. If no debug information is available, a temporary file
105
- // / name is generated.
106
- // /
107
- // / @param HideDebugIntrinsics Omit debug intrinsics in emitted IR source file.
108
- // / @param HideDebugMetadata Omit debug metadata in emitted IR source file.
109
- // / @param Directory Embed this directory in the debug information.
110
- // / @param Filename Embed this file name in the debug information.
111
- ModulePass *createDebugIRPass (bool HideDebugIntrinsics,
112
- bool HideDebugMetadata,
113
- StringRef Directory = StringRef(),
114
- StringRef Filename = StringRef());
115
-
116
- // / createDebugIRPass - Enable interactive stepping through LLVM IR in LLDB
117
- // / (or GDB) with an existing IR file on disk. When creating
118
- // / a DebugIR pass with this function, no source file is
119
- // / output to disk and the existing one is unmodified. Debug
120
- // / metadata in the Module is created/updated to point to
121
- // / the existing textual IR file on disk.
122
- // / NOTE: If the IR file to be debugged is not on disk, use the version of this
123
- // / function with parameters in order to generate the file that will be
124
- // / seen by the debugger.
125
- ModulePass *createDebugIRPass ();
126
-
127
96
} // End llvm namespace
128
97
129
98
#endif
0 commit comments