comparison gen/passes/StripExternals.cpp @ 1532:c88b16d4a13c

Remove all of the now unecessary #if LLVM_REV
author Benjamin Kramer <benny.kra@gmail.com>
date Sat, 11 Jul 2009 14:09:33 +0200
parents 7cca8cf730de
children 259b031f3d22
comparison
equal deleted inserted replaced
1531:7120a74e9ae2 1532:c88b16d4a13c
14 // globals only used by available_externally functions and initializers. 14 // globals only used by available_externally functions and initializers.
15 // 15 //
16 //===----------------------------------------------------------------------===// 16 //===----------------------------------------------------------------------===//
17 17
18 #include "gen/llvm-version.h" 18 #include "gen/llvm-version.h"
19
20 #if LLVM_REV >= 68940
21
22 19
23 #define DEBUG_TYPE "strip-externals" 20 #define DEBUG_TYPE "strip-externals"
24 21
25 #include "Passes.h" 22 #include "Passes.h"
26 23
94 ++I; 91 ++I;
95 } 92 }
96 93
97 return Changed; 94 return Changed;
98 } 95 }
99
100 #endif //LLVM_REV >= 68940