diff options
author | Dan Gohman <gohman@apple.com> | 2009-08-12 22:10:57 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2009-08-12 22:10:57 +0000 |
commit | 1432ef864e363e91890bb1f9678f499f866dda0f (patch) | |
tree | d2f1697774254d49628dddcdc47ac334a08c731d /llvm/lib/System/Disassembler.cpp | |
parent | cb2752bb5d0d75c7e1799f1cde17546986ba4fbb (diff) | |
download | llvm-1432ef864e363e91890bb1f9678f499f866dda0f.zip llvm-1432ef864e363e91890bb1f9678f499f866dda0f.tar.gz llvm-1432ef864e363e91890bb1f9678f499f866dda0f.tar.bz2 |
This void is implicit in C++.
llvm-svn: 78848
Diffstat (limited to 'llvm/lib/System/Disassembler.cpp')
-rw-r--r-- | llvm/lib/System/Disassembler.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/System/Disassembler.cpp b/llvm/lib/System/Disassembler.cpp index 378fe26..bad427a 100644 --- a/llvm/lib/System/Disassembler.cpp +++ b/llvm/lib/System/Disassembler.cpp @@ -26,7 +26,7 @@ using namespace llvm; -bool llvm::sys::hasDisassembler(void) +bool llvm::sys::hasDisassembler() { #if defined (__i386__) || defined (__amd64__) || defined (__x86_64__) // We have option to enable udis86 library. |