[llvm] r323656 - [AccelTable] Fix undefined reference
Jonas Devlieghere via llvm-commits
llvm-commits at lists.llvm.org
Mon Jan 29 07:07:56 PST 2018
Author: jdevlieghere
Date: Mon Jan 29 07:07:55 2018
New Revision: 323656
URL: http://llvm.org/viewvc/llvm-project?rev=323656&view=rev
Log:
[AccelTable] Fix undefined reference
Fixes the missing reference in AppleAccelTableData by making the method
pure virtual as intended.
Modified:
llvm/trunk/include/llvm/CodeGen/AccelTable.h
Modified: llvm/trunk/include/llvm/CodeGen/AccelTable.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/CodeGen/AccelTable.h?rev=323656&r1=323655&r2=323656&view=diff
==============================================================================
--- llvm/trunk/include/llvm/CodeGen/AccelTable.h (original)
+++ llvm/trunk/include/llvm/CodeGen/AccelTable.h Mon Jan 29 07:07:55 2018
@@ -212,7 +212,7 @@ public:
virtual void print(raw_ostream &OS) const = 0;
#endif
protected:
- virtual uint64_t order() const;
+ virtual uint64_t order() const = 0;
};
/// Apple-style accelerator table base class.
More information about the llvm-commits
mailing list