[llvm] r225146 - [PM] Cleanup a place where I forgot to update the header guards when
Chandler Carruth
chandlerc at gmail.com
Sun Jan 4 19:03:32 PST 2015
Author: chandlerc
Date: Sun Jan 4 21:03:31 2015
New Revision: 225146
URL: http://llvm.org/viewvc/llvm-project?rev=225146&view=rev
Log:
[PM] Cleanup a place where I forgot to update the header guards when
renaming a file from AssumptionTracker.h to AssumptionCache.h.
Thanks to Philip Reames for noticing and pointing it out in code review!
Modified:
llvm/trunk/include/llvm/Analysis/AssumptionCache.h
Modified: llvm/trunk/include/llvm/Analysis/AssumptionCache.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Analysis/AssumptionCache.h?rev=225146&r1=225145&r2=225146&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Analysis/AssumptionCache.h (original)
+++ llvm/trunk/include/llvm/Analysis/AssumptionCache.h Sun Jan 4 21:03:31 2015
@@ -13,8 +13,8 @@
//
//===----------------------------------------------------------------------===//
-#ifndef LLVM_ANALYSIS_ASSUMPTIONTRACKER_H
-#define LLVM_ANALYSIS_ASSUMPTIONTRACKER_H
+#ifndef LLVM_ANALYSIS_ASSUMPTIONCACHE_H
+#define LLVM_ANALYSIS_ASSUMPTIONCACHE_H
#include "llvm/ADT/ArrayRef.h"
#include "llvm/ADT/DenseMap.h"
More information about the llvm-commits
mailing list