diff options
author | Daniel Dunbar <daniel@zuster.org> | 2011-04-29 18:58:55 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2011-04-29 18:58:55 +0000 |
commit | eeb2cbce806da1919ea22edf93cfa9ff91ceafb7 (patch) | |
tree | 7f903107ce349181571e677aa093ce2a5bbc0809 /llvm/runtime/libprofile/PathProfiling.c | |
parent | 616044acd5b0920ed0cc40930b5d7dbcebca480c (diff) | |
download | bcm5719-llvm-eeb2cbce806da1919ea22edf93cfa9ff91ceafb7.tar.gz bcm5719-llvm-eeb2cbce806da1919ea22edf93cfa9ff91ceafb7.zip |
Cleanup some DOS newlines.
llvm-svn: 130529
Diffstat (limited to 'llvm/runtime/libprofile/PathProfiling.c')
-rw-r--r-- | llvm/runtime/libprofile/PathProfiling.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/llvm/runtime/libprofile/PathProfiling.c b/llvm/runtime/libprofile/PathProfiling.c index 161dfa0b240..9003c3f6326 100644 --- a/llvm/runtime/libprofile/PathProfiling.c +++ b/llvm/runtime/libprofile/PathProfiling.c @@ -16,20 +16,20 @@ #include "Profiling.h" #include "llvm/Analysis/ProfileInfoTypes.h" #include <sys/types.h> -#if !defined(_MSC_VER) && !defined(__MINGW32__)
-#include <unistd.h>
-#else
-#include <io.h>
-#endif
+#if !defined(_MSC_VER) && !defined(__MINGW32__) +#include <unistd.h> +#else +#include <io.h> +#endif #include <string.h> #include <stdlib.h> #include <stdint.h> #include <stdio.h> // Must use __inline in Microsoft C -#if defined(_MSC_VER)
-#define inline __inline
-#endif
+#if defined(_MSC_VER) +#define inline __inline +#endif /* note that this is used for functions with large path counts, but it is unlikely those paths will ALL be executed */ |