diff options
author | Sanjoy Das <sanjoy@playingwithpointers.com> | 2016-04-19 06:25:02 +0000 |
---|---|---|
committer | Sanjoy Das <sanjoy@playingwithpointers.com> | 2016-04-19 06:25:02 +0000 |
commit | 4519ff73dfadd2923e6231a328f61653695fbbcf (patch) | |
tree | ba7991ec4bf8fc922d94380903f5af46bc9fec05 /llvm/lib/CodeGen/PatchableFunction.cpp | |
parent | fe71ec771a3fd387831eed682af9463ba9d08bfd (diff) | |
download | llvm-4519ff73dfadd2923e6231a328f61653695fbbcf.zip llvm-4519ff73dfadd2923e6231a328f61653695fbbcf.tar.gz llvm-4519ff73dfadd2923e6231a328f61653695fbbcf.tar.bz2 |
Add a description for the PatchableFunction pass; NFC
llvm-svn: 266721
Diffstat (limited to 'llvm/lib/CodeGen/PatchableFunction.cpp')
-rw-r--r-- | llvm/lib/CodeGen/PatchableFunction.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/PatchableFunction.cpp b/llvm/lib/CodeGen/PatchableFunction.cpp index ca345df..6fd9954 100644 --- a/llvm/lib/CodeGen/PatchableFunction.cpp +++ b/llvm/lib/CodeGen/PatchableFunction.cpp @@ -67,4 +67,5 @@ bool PatchableFunction::runOnMachineFunction(MachineFunction &MF) { char PatchableFunction::ID = 0; char &llvm::PatchableFunctionID = PatchableFunction::ID; -INITIALIZE_PASS(PatchableFunction, "patchable-function", "", false, false) +INITIALIZE_PASS(PatchableFunction, "patchable-function", + "Implement the 'patchable-function' attribute", false, false) |