Give folks a reference to some material on the fundamental design

pattern in use here. Addresses review feedback from Sean (thanks!) and
others.

llvm-svn: 194541
This commit is contained in:
Chandler Carruth 2013-11-13 01:51:36 +00:00
parent 7309f60b9e
commit a477d2ab57
1 changed files with 7 additions and 0 deletions

View File

@ -25,6 +25,13 @@
/// a Function.
/// * ModulePassManager must be directly run, runs each pass over the Module.
///
/// Note that the implementations of the pass managers use concept-based
/// polymorphism as outlined in the "Value Semantics and Concept-based
/// Polymorphism" talk (or its abbreviated sibling "Inheritance Is The Base
/// Class of Evil") by Sean Parent:
/// * http://github.com/sean-parent/sean-parent.github.com/wiki/Papers-and-Presentations
/// * http://channel9.msdn.com/Events/GoingNative/2013/Inheritance-Is-The-Base-Class-of-Evil
///
//===----------------------------------------------------------------------===//
#include "llvm/ADT/DenseMap.h"