diff options
Diffstat (limited to 'include/llvm/System')
-rw-r--r-- | include/llvm/System/Alarm.h | 4 | ||||
-rw-r--r-- | include/llvm/System/DynamicLibrary.h | 3 | ||||
-rw-r--r-- | include/llvm/System/MappedFile.h | 2 | ||||
-rw-r--r-- | include/llvm/System/Path.h | 2 | ||||
-rw-r--r-- | include/llvm/System/Process.h | 2 | ||||
-rw-r--r-- | include/llvm/System/Program.h | 2 | ||||
-rw-r--r-- | include/llvm/System/Signals.h | 3 | ||||
-rw-r--r-- | include/llvm/System/TimeValue.h | 3 |
8 files changed, 21 insertions, 0 deletions
diff --git a/include/llvm/System/Alarm.h b/include/llvm/System/Alarm.h index ec44a6df1e..2b78da6dba 100644 --- a/include/llvm/System/Alarm.h +++ b/include/llvm/System/Alarm.h @@ -17,6 +17,8 @@ #ifndef LLVM_SYSTEM_ALARM_H #define LLVM_SYSTEM_ALARM_H +#include "llvm/System/IncludeFile.h" + namespace llvm { namespace sys { @@ -42,4 +44,6 @@ namespace sys { } // End sys namespace } // End llvm namespace +FORCE_DEFINING_FILE_TO_BE_LINKED(SystemAlarm) + #endif diff --git a/include/llvm/System/DynamicLibrary.h b/include/llvm/System/DynamicLibrary.h index e053daf440..fc1bfbe1fb 100644 --- a/include/llvm/System/DynamicLibrary.h +++ b/include/llvm/System/DynamicLibrary.h @@ -15,6 +15,7 @@ #define LLVM_SYSTEM_DYNAMIC_LIBRARY_H #include "llvm/System/Path.h" +#include "llvm/System/IncludeFile.h" #include <string> namespace llvm { @@ -125,4 +126,6 @@ namespace sys { } // End sys namespace } // End llvm namespace +FORCE_DEFINING_FILE_TO_BE_LINKED(SystemDynamicLibrary) + #endif // LLVM_SYSTEM_DYNAMIC_LIBRARY_H diff --git a/include/llvm/System/MappedFile.h b/include/llvm/System/MappedFile.h index 9fd0d08357..3160427a6c 100644 --- a/include/llvm/System/MappedFile.h +++ b/include/llvm/System/MappedFile.h @@ -15,6 +15,7 @@ #define LLVM_SYSTEM_MAPPEDFILE_H #include "llvm/System/Path.h" +#include "llvm/System/IncludeFile.h" namespace llvm { namespace sys { @@ -152,5 +153,6 @@ namespace sys { } } +FORCE_DEFINING_FILE_TO_BE_LINKED(SystemMappedFile) #endif diff --git a/include/llvm/System/Path.h b/include/llvm/System/Path.h index 14250b5de8..b4eaca7abf 100644 --- a/include/llvm/System/Path.h +++ b/include/llvm/System/Path.h @@ -15,6 +15,7 @@ #define LLVM_SYSTEM_PATH_H #include "llvm/System/TimeValue.h" +#include "llvm/System/IncludeFile.h" #include <set> #include <string> #include <vector> @@ -571,4 +572,5 @@ std::ostream& operator<<(std::ostream& strm, const sys::Path& aPath); } +FORCE_DEFINING_FILE_TO_BE_LINKED(SystemPath) #endif diff --git a/include/llvm/System/Process.h b/include/llvm/System/Process.h index 600d8d5cc3..f843af36fc 100644 --- a/include/llvm/System/Process.h +++ b/include/llvm/System/Process.h @@ -15,6 +15,7 @@ #define LLVM_SYSTEM_PROCESS_H #include "llvm/System/TimeValue.h" +#include "llvm/System/IncludeFile.h" namespace llvm { namespace sys { @@ -99,5 +100,6 @@ namespace sys { } } +FORCE_DEFINING_FILE_TO_BE_LINKED(SystemProcess) #endif diff --git a/include/llvm/System/Program.h b/include/llvm/System/Program.h index 0a237bccbc..92534de405 100644 --- a/include/llvm/System/Program.h +++ b/include/llvm/System/Program.h @@ -15,6 +15,7 @@ #define LLVM_SYSTEM_PROGRAM_H #include "llvm/System/Path.h" +#include "llvm/System/IncludeFile.h" #include <vector> namespace llvm { @@ -82,5 +83,6 @@ namespace sys { } } +FORCE_DEFINING_FILE_TO_BE_LINKED(SystemProgram) #endif diff --git a/include/llvm/System/Signals.h b/include/llvm/System/Signals.h index 1d5286f3bd..21feb5b316 100644 --- a/include/llvm/System/Signals.h +++ b/include/llvm/System/Signals.h @@ -16,6 +16,7 @@ #define LLVM_SYSTEM_SIGNALS_H #include "llvm/System/Path.h" +#include "llvm/System/IncludeFile.h" namespace llvm { namespace sys { @@ -49,4 +50,6 @@ namespace sys { } // End sys namespace } // End llvm namespace +FORCE_DEFINING_FILE_TO_BE_LINKED(SystemSignals) + #endif diff --git a/include/llvm/System/TimeValue.h b/include/llvm/System/TimeValue.h index 624eb70176..07cb18c134 100644 --- a/include/llvm/System/TimeValue.h +++ b/include/llvm/System/TimeValue.h @@ -12,6 +12,7 @@ //===----------------------------------------------------------------------===// #include "llvm/Support/DataTypes.h" +#include "llvm/System/IncludeFile.h" #include <string> #ifndef LLVM_SYSTEM_TIMEVALUE_H @@ -380,4 +381,6 @@ inline TimeValue operator - (const TimeValue &tv1, const TimeValue &tv2) { } } +FORCE_DEFINING_FILE_TO_BE_LINKED(SystemTimeValue) + #endif |