diff options
author | Bill Wendling <isanbard@gmail.com> | 2013-02-14 19:40:27 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2013-02-14 19:40:27 +0000 |
commit | aefd14be3951d5b84cda5561655fe63549819d25 (patch) | |
tree | 48302b5b146b394be85e44b0ba31d36060e13e01 /lib | |
parent | 296756a2b542f99dff470a70040e97469530ee3c (diff) | |
download | external_llvm-aefd14be3951d5b84cda5561655fe63549819d25.zip external_llvm-aefd14be3951d5b84cda5561655fe63549819d25.tar.gz external_llvm-aefd14be3951d5b84cda5561655fe63549819d25.tar.bz2 |
s/bool/LLVMBool/
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@175204 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r-- | lib/IR/Core.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/IR/Core.cpp b/lib/IR/Core.cpp index 10f870c..79eb269 100644 --- a/lib/IR/Core.cpp +++ b/lib/IR/Core.cpp @@ -2373,7 +2373,7 @@ LLVMMemoryBufferRef LLVMCreateMemoryBufferWithMemoryRange( const char *InputData, size_t InputDataLength, const char *BufferName, - bool RequiresNullTerminator) { + LLVMBool RequiresNullTerminator) { return wrap(MemoryBuffer::getMemBuffer( StringRef(InputData, InputDataLength), |