diff options
author | Jeffrey Yasskin <jyasskin@google.com> | 2009-07-16 23:58:14 +0000 |
---|---|---|
committer | Jeffrey Yasskin <jyasskin@google.com> | 2009-07-16 23:58:14 +0000 |
commit | 4203c0866a6d4b5d0065e3d98ac8d161083954e7 (patch) | |
tree | 89ee2de006cd73ec3c693e9459f9f9b3d509435a | |
parent | d92c6dd218b1d5e46be25eac70d03ffd6664a608 (diff) | |
download | external_llvm-4203c0866a6d4b5d0065e3d98ac8d161083954e7.zip external_llvm-4203c0866a6d4b5d0065e3d98ac8d161083954e7.tar.gz external_llvm-4203c0866a6d4b5d0065e3d98ac8d161083954e7.tar.bz2 |
Fix "no newline at end of file" warning from gcc.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@76127 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/VMCore/LLVMContext.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/VMCore/LLVMContext.cpp b/lib/VMCore/LLVMContext.cpp index f7f8add..4d847a7 100644 --- a/lib/VMCore/LLVMContext.cpp +++ b/lib/VMCore/LLVMContext.cpp @@ -644,4 +644,4 @@ void LLVMContext::erase(MDString *M) { void LLVMContext::erase(MDNode *M) { pImpl->erase(M); -}
\ No newline at end of file +} |