commit | 206d7ce58244c40aaecd64f274992f03018e187c | [log] [tgz] |
---|---|---|
author | Eric Christopher <echristo@apple.com> | Fri Apr 16 04:02:04 2010 +0000 |
committer | Eric Christopher <echristo@apple.com> | Fri Apr 16 04:02:04 2010 +0000 |
tree | 538cd97957601df1b6f56e9cb4c14244b11ea124 | |
parent | bd2d9430d6cff0d16013cf98ef1a55b54837fdc8 [diff] [blame] |
Silence an unused variable warning. llvm-svn: 101438
diff --git a/llvm/lib/VMCore/Pass.cpp b/llvm/lib/VMCore/Pass.cpp index 987712a..a60877d 100644 --- a/llvm/lib/VMCore/Pass.cpp +++ b/llvm/lib/VMCore/Pass.cpp
@@ -331,7 +331,7 @@ PassRegistrarObj = 0; } } -ManagedCleanup<&cleanupPassRegistrar> registrarCleanup; +ManagedCleanup<&cleanupPassRegistrar> registrarCleanup ATTRIBUTE_USED; }