diff options
author | Benjamin Kramer <benny.kra@googlemail.com> | 2015-07-01 14:47:39 +0000 |
---|---|---|
committer | Benjamin Kramer <benny.kra@googlemail.com> | 2015-07-01 14:47:39 +0000 |
commit | f4c2025357f70a76eb24b239870054a6a6da778f (patch) | |
tree | 0e842ed98598cb9219c4d560a2174755d846c05a /llvm/lib/CodeGen/AntiDepBreaker.h | |
parent | a8a8c605eea1b4d3dda91c1159bd50b7b82680fd (diff) | |
download | bcm5719-llvm-f4c2025357f70a76eb24b239870054a6a6da778f.tar.gz bcm5719-llvm-f4c2025357f70a76eb24b239870054a6a6da778f.zip |
[CodeGen] Reduce visibility of implementation details
NFC.
llvm-svn: 241164
Diffstat (limited to 'llvm/lib/CodeGen/AntiDepBreaker.h')
-rw-r--r-- | llvm/lib/CodeGen/AntiDepBreaker.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/AntiDepBreaker.h b/llvm/lib/CodeGen/AntiDepBreaker.h index a61a8efa4da..9f05200dcdf 100644 --- a/llvm/lib/CodeGen/AntiDepBreaker.h +++ b/llvm/lib/CodeGen/AntiDepBreaker.h @@ -27,7 +27,7 @@ namespace llvm { /// This class works in conjunction with the post-RA scheduler to rename /// registers to break register anti-dependencies (WAR hazards). -class AntiDepBreaker { +class LLVM_LIBRARY_VISIBILITY AntiDepBreaker { public: typedef std::vector<std::pair<MachineInstr *, MachineInstr *> > DbgValueVector; |