diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2006-12-05 17:53:26 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2006-12-05 17:53:26 +0000 |
commit | 1792326daf8c56ed50ae5afe4ff7ae420c4e978f (patch) | |
tree | 749ee68779f4ce79a142943f5b3f495688eedc08 /llvm/lib/System/Unix | |
parent | 96fd6447c781dc8006f64beb9f7df4b189e006a9 (diff) | |
download | bcm5719-llvm-1792326daf8c56ed50ae5afe4ff7ae420c4e978f.tar.gz bcm5719-llvm-1792326daf8c56ed50ae5afe4ff7ae420c4e978f.zip |
Eliminate "control reaches end of non-void function" warnings.
llvm-svn: 32225
Diffstat (limited to 'llvm/lib/System/Unix')
-rw-r--r-- | llvm/lib/System/Unix/Mutex.inc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/llvm/lib/System/Unix/Mutex.inc b/llvm/lib/System/Unix/Mutex.inc index fa218dbb53c..d0984a4e19e 100644 --- a/llvm/lib/System/Unix/Mutex.inc +++ b/llvm/lib/System/Unix/Mutex.inc @@ -31,16 +31,19 @@ Mutex::~Mutex() bool Mutex::acquire() { + return true; } bool Mutex::release() { + return true; } bool Mutex::tryacquire( void ) { + return true; } } |