diff options
author | Matthias Braun <matze@braunis.de> | 2018-11-01 00:38:01 +0000 |
---|---|---|
committer | Matthias Braun <matze@braunis.de> | 2018-11-01 00:38:01 +0000 |
commit | a9f900561ed7d7c8738c32b68588c9ec5e6c1f5f (patch) | |
tree | be918fc446e96c040a0dd77603d1a6d3b5be8f0a /llvm/lib/Target/X86/X86FixupLEAs.cpp | |
parent | 35e4c84c1fa4ffb09011c5f87fe6b5ccc7035740 (diff) | |
download | bcm5719-llvm-a9f900561ed7d7c8738c32b68588c9ec5e6c1f5f.tar.gz bcm5719-llvm-a9f900561ed7d7c8738c32b68588c9ec5e6c1f5f.zip |
X86: Consistently declare pass initializers in X86.h; NFC
This avoids declaring them twice: in X86TargetMachine.cpp and the file
implementing the pass.
llvm-svn: 345801
Diffstat (limited to 'llvm/lib/Target/X86/X86FixupLEAs.cpp')
-rw-r--r-- | llvm/lib/Target/X86/X86FixupLEAs.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/llvm/lib/Target/X86/X86FixupLEAs.cpp b/llvm/lib/Target/X86/X86FixupLEAs.cpp index 33a8baac594..ed24d6a8547 100644 --- a/llvm/lib/Target/X86/X86FixupLEAs.cpp +++ b/llvm/lib/Target/X86/X86FixupLEAs.cpp @@ -25,10 +25,6 @@ #include "llvm/Support/raw_ostream.h" using namespace llvm; -namespace llvm { -void initializeFixupLEAPassPass(PassRegistry &); -} - #define FIXUPLEA_DESC "X86 LEA Fixup" #define FIXUPLEA_NAME "x86-fixup-LEAs" |