[scudo] add NORETURN to the declaration of dieWithMessage; this should fix a warning...
authorKostya Serebryany <kcc@google.com>
Tue, 2 Aug 2016 23:23:13 +0000 (23:23 +0000)
committerKostya Serebryany <kcc@google.com>
Tue, 2 Aug 2016 23:23:13 +0000 (23:23 +0000)
llvm-svn: 277546

compiler-rt/lib/scudo/scudo_utils.h

index 07394ff..c4f0760 100644 (file)
@@ -28,7 +28,7 @@ inline Dest bit_cast(const Source& source) {
   return dest;
 }
 
-void dieWithMessage(const char *Format, ...);
+void NORETURN dieWithMessage(const char *Format, ...);
 
 enum  CPUFeature {
   SSE4_2 = 0,