diff options
author | Brian Gaeke <gaeke@uiuc.edu> | 2003-06-16 21:54:01 +0000 |
---|---|---|
committer | Brian Gaeke <gaeke@uiuc.edu> | 2003-06-16 21:54:01 +0000 |
commit | 7a719ed20c27a658be627166e11be0511509f7da (patch) | |
tree | e8a2e527436a3d81c2dbdc900515c7e922f2d41f /llvm/lib/Support/SystemUtils.cpp | |
parent | 3350651851d9a817b5d3332edd2363ab41523bc4 (diff) | |
download | bcm5719-llvm-7a719ed20c27a658be627166e11be0511509f7da.tar.gz bcm5719-llvm-7a719ed20c27a658be627166e11be0511509f7da.zip |
Isolate machine-dependent use of <alloca.h> in "Support/Alloca.h",
so that we can easily change its use to be conditional on the result of
an autoconf test later.
llvm-svn: 6723
Diffstat (limited to 'llvm/lib/Support/SystemUtils.cpp')
-rw-r--r-- | llvm/lib/Support/SystemUtils.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Support/SystemUtils.cpp b/llvm/lib/Support/SystemUtils.cpp index 034c141f794..c88a516e9f3 100644 --- a/llvm/lib/Support/SystemUtils.cpp +++ b/llvm/lib/Support/SystemUtils.cpp @@ -10,7 +10,7 @@ #include <fstream> #include <iostream> #include <cstdlib> -#include <alloca.h> +#include "Support/Alloca.h" #include <sys/types.h> #include <sys/stat.h> #include <fcntl.h> |