1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-21 12:02:58 +02:00

change NULL to 0, unbreaks the ppc target when building on ia64

llvm-svn: 24176
This commit is contained in:
Duraid Madina 2005-11-04 01:45:04 +00:00
parent f5824e4fa3
commit feeaabd6f1

View File

@ -55,13 +55,13 @@ struct InstrItineraryData {
//
// Ctors.
//
InstrItineraryData() : Stages(NULL), Itineratries(NULL) {}
InstrItineraryData() : Stages(0), Itineratries(0) {}
InstrItineraryData(InstrStage *S, InstrItinerary *I) : Stages(S), Itineratries(I) {}
//
// isEmpty - Returns true if there are no itineraries.
//
inline bool isEmpty() const { return Itineratries == NULL; }
inline bool isEmpty() const { return Itineratries == 0; }
//
// begin - Return the first stage of the itinerary.