diff options
author | Michael J. Spencer <bigcheesegs@gmail.com> | 2012-08-15 19:16:27 +0000 |
---|---|---|
committer | Michael J. Spencer <bigcheesegs@gmail.com> | 2012-08-15 19:16:27 +0000 |
commit | 1d2d12deb1849304ece5b9a6688571ecf3958be5 (patch) | |
tree | 497177bc6f95c3e6a0e3c1faeeddd61746d93fab /llvm | |
parent | ecf77b56ddc7add0552c79146bb69f043c52a10f (diff) | |
download | bcm5719-llvm-1d2d12deb1849304ece5b9a6688571ecf3958be5.tar.gz bcm5719-llvm-1d2d12deb1849304ece5b9a6688571ecf3958be5.zip |
Properly test the LLVM_USE_RVALUE_REFERENCES macro.
llvm-svn: 161978
Diffstat (limited to 'llvm')
-rw-r--r-- | llvm/include/llvm/Support/FileSystem.h | 2 | ||||
-rw-r--r-- | llvm/lib/Support/Unix/PathV2.inc | 2 | ||||
-rw-r--r-- | llvm/lib/Support/Windows/PathV2.inc | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/llvm/include/llvm/Support/FileSystem.h b/llvm/include/llvm/Support/FileSystem.h index b287a91767b..f4a9aa0e899 100644 --- a/llvm/include/llvm/Support/FileSystem.h +++ b/llvm/include/llvm/Support/FileSystem.h @@ -607,7 +607,7 @@ private: public: typedef char char_type; -#ifdef LLVM_USE_RVALUE_REFERENCES +#if LLVM_USE_RVALUE_REFERENCES mapped_file_region(mapped_file_region&&); mapped_file_region &operator =(mapped_file_region&&); #endif diff --git a/llvm/lib/Support/Unix/PathV2.inc b/llvm/lib/Support/Unix/PathV2.inc index 3bb38f6714d..d04f590f87e 100644 --- a/llvm/lib/Support/Unix/PathV2.inc +++ b/llvm/lib/Support/Unix/PathV2.inc @@ -545,7 +545,7 @@ mapped_file_region::~mapped_file_region() { ::munmap(Mapping, Size); } -#ifdef LLVM_USE_RVALUE_REFERENCES +#if LLVM_USE_RVALUE_REFERENCES mapped_file_region::mapped_file_region(mapped_file_region &&other) : Mode(other.Mode), Size(other.Size), Mapping(other.Mapping) { other.Mapping = 0; diff --git a/llvm/lib/Support/Windows/PathV2.inc b/llvm/lib/Support/Windows/PathV2.inc index 23f42aa10b0..696768ba9dd 100644 --- a/llvm/lib/Support/Windows/PathV2.inc +++ b/llvm/lib/Support/Windows/PathV2.inc @@ -861,7 +861,7 @@ mapped_file_region::~mapped_file_region() { ::CloseHandle(FileHandle); } -#ifdef LLVM_USE_RVALUE_REFERENCES +#if LLVM_USE_RVALUE_REFERENCES mapped_file_region::mapped_file_region(mapped_file_region &&other) : Mode(other.Mode) , Size(other.Size) |