From 1792326daf8c56ed50ae5afe4ff7ae420c4e978f Mon Sep 17 00:00:00 2001 From: Reid Spencer Date: Tue, 5 Dec 2006 17:53:26 +0000 Subject: Eliminate "control reaches end of non-void function" warnings. llvm-svn: 32225 --- llvm/lib/System/Unix/Mutex.inc | 3 +++ 1 file changed, 3 insertions(+) (limited to 'llvm/lib/System/Unix/Mutex.inc') 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; } } -- cgit v1.2.3