From 206d7ce58244c40aaecd64f274992f03018e187c Mon Sep 17 00:00:00 2001 From: Eric Christopher Date: Fri, 16 Apr 2010 04:02:04 +0000 Subject: [PATCH] Silence an unused variable warning. llvm-svn: 101438 --- llvm/lib/VMCore/Pass.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/lib/VMCore/Pass.cpp b/llvm/lib/VMCore/Pass.cpp index 987712a2dc01..a60877db2f62 100644 --- a/llvm/lib/VMCore/Pass.cpp +++ b/llvm/lib/VMCore/Pass.cpp @@ -331,7 +331,7 @@ void cleanupPassRegistrar(void*) { PassRegistrarObj = 0; } } -ManagedCleanup<&cleanupPassRegistrar> registrarCleanup; +ManagedCleanup<&cleanupPassRegistrar> registrarCleanup ATTRIBUTE_USED; }