diff options
author | Joerg Sonnenberger <joerg@bec.de> | 2016-06-18 23:25:37 +0000 |
---|---|---|
committer | Joerg Sonnenberger <joerg@bec.de> | 2016-06-18 23:25:37 +0000 |
commit | 22982030563affc08a72f7fbf76423aa22c1d608 (patch) | |
tree | bb1d710efab40b0893f39a2eade07a10a012ec1f /llvm/lib/Target/X86/X86MCInstLower.cpp | |
parent | 1c547d41cd8c7e44651078e5a2e33907f338ce16 (diff) | |
download | bcm5719-llvm-22982030563affc08a72f7fbf76423aa22c1d608.tar.gz bcm5719-llvm-22982030563affc08a72f7fbf76423aa22c1d608.zip |
doesSetDirectiveSuppressesReloc -> doesSetDirectiveSuppressReloc, the
former is grammatically incorrect.
llvm-svn: 273100
Diffstat (limited to 'llvm/lib/Target/X86/X86MCInstLower.cpp')
-rw-r--r-- | llvm/lib/Target/X86/X86MCInstLower.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/X86/X86MCInstLower.cpp b/llvm/lib/Target/X86/X86MCInstLower.cpp index 86bae3e08db..4fc7ae5b4d5 100644 --- a/llvm/lib/Target/X86/X86MCInstLower.cpp +++ b/llvm/lib/Target/X86/X86MCInstLower.cpp @@ -245,7 +245,7 @@ MCOperand X86MCInstLower::LowerSymbolOperand(const MachineOperand &MO, MCSymbolRefExpr::create(MF.getPICBaseSymbol(), Ctx), Ctx); if (MO.isJTI()) { - assert(MAI.doesSetDirectiveSuppressesReloc()); + assert(MAI.doesSetDirectiveSuppressReloc()); // If .set directive is supported, use it to reduce the number of // relocations the assembler will generate for differences between // local labels. This is only safe when the symbols are in the same |