diff options
author | Bill Wendling <isanbard@gmail.com> | 2008-09-30 22:05:33 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2008-09-30 22:05:33 +0000 |
commit | 6e08738d4b1bb6c087d81bca656c24cdc1d504f8 (patch) | |
tree | 35ba29f8b4f14324f198a0468ecd58647d2c229e /lib/Target/X86/X86Subtarget.h | |
parent | 0483d018c4f15f206a83364e498957127e74f431 (diff) | |
download | external_llvm-6e08738d4b1bb6c087d81bca656c24cdc1d504f8.zip external_llvm-6e08738d4b1bb6c087d81bca656c24cdc1d504f8.tar.gz external_llvm-6e08738d4b1bb6c087d81bca656c24cdc1d504f8.tar.bz2 |
Just don't transform this memset into "bzero" if no-builtin is specified.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@56888 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/X86/X86Subtarget.h')
-rw-r--r-- | lib/Target/X86/X86Subtarget.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/X86/X86Subtarget.h b/lib/Target/X86/X86Subtarget.h index 98ebe89..b95a2e4 100644 --- a/lib/Target/X86/X86Subtarget.h +++ b/lib/Target/X86/X86Subtarget.h @@ -184,7 +184,7 @@ public: /// the current subtarget and it is considered prefereable over /// memset with zero passed as the second argument. Otherwise it /// returns null. - const char *getBZeroEntry(bool NoBuiltin) const; + const char *getBZeroEntry() const; }; namespace X86 { |