Skip to content
Snippets Groups Projects
Commit c4149a10 authored by Michael Ilseman's avatar Michael Ilseman
Browse files

Document the interface for integer expansion, using doxygen-style comments

llvm-svn: 164231
parent 623c5cda
No related branches found
No related tags found
No related merge requests found
...@@ -23,6 +23,14 @@ namespace llvm { ...@@ -23,6 +23,14 @@ namespace llvm {
namespace llvm { namespace llvm {
/// Generate code to divide two integers, replacing Div with the generated
/// code. This currently generates code similarly to compiler-rt's
/// implementations, but future work includes generating more specialized code
/// when more information about the operands are known. Currently only
/// implements 32bit scalar division, but future work is removing this
/// limitation.
///
/// @brief Replace Div with generated code.
bool expandDivision(BinaryOperator* Div); bool expandDivision(BinaryOperator* Div);
} // End llvm namespace } // End llvm namespace
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment