mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-04 17:56:53 +00:00
remove the last uses of Config/alloca.h
llvm-svn: 79873
This commit is contained in:
parent
ca68fb09b1
commit
11f509336c
@ -37,7 +37,6 @@
|
||||
#include "llvm/ADT/SmallPtrSet.h"
|
||||
#include "llvm/ADT/SmallSet.h"
|
||||
#include "llvm/ADT/STLExtras.h"
|
||||
#include "llvm/Config/alloca.h"
|
||||
#include <algorithm>
|
||||
using namespace llvm;
|
||||
|
||||
|
@ -16,7 +16,7 @@
|
||||
//=== is guaranteed to work on *all* UNIX variants.
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#include "llvm/Config/alloca.h"
|
||||
#include "llvm/ADT/SmallVector.h"
|
||||
#include "Unix.h"
|
||||
#if HAVE_SYS_STAT_H
|
||||
#include <sys/stat.h>
|
||||
@ -400,7 +400,9 @@ Path::getSuffix() const {
|
||||
|
||||
bool Path::getMagicNumber(std::string& Magic, unsigned len) const {
|
||||
assert(len < 1024 && "Request for magic string too long");
|
||||
char* buf = (char*) alloca(1 + len);
|
||||
SmallVector<char, 128> Buf;
|
||||
Buf.resize(1 + len);
|
||||
char* buf = Buf.data();
|
||||
int fd = ::open(path.c_str(), O_RDONLY);
|
||||
if (fd < 0)
|
||||
return false;
|
||||
@ -829,7 +831,9 @@ Path::makeUnique(bool reuse_current, std::string* ErrMsg) {
|
||||
|
||||
// Append an XXXXXX pattern to the end of the file for use with mkstemp,
|
||||
// mktemp or our own implementation.
|
||||
char *FNBuffer = (char*) alloca(path.size()+8);
|
||||
SmallVector<char, 128> Buf;
|
||||
Buf.resize(path.size()+8);
|
||||
char *FNBuffer = Buf.data();
|
||||
path.copy(FNBuffer,path.size());
|
||||
if (isDirectory())
|
||||
strcpy(FNBuffer+path.size(), "/XXXXXX");
|
||||
|
@ -19,7 +19,6 @@
|
||||
#include "ARMSubtarget.h"
|
||||
#include "llvm/Function.h"
|
||||
#include "llvm/CodeGen/JITCodeEmitter.h"
|
||||
#include "llvm/Config/alloca.h"
|
||||
#include "llvm/Support/Debug.h"
|
||||
#include "llvm/Support/ErrorHandling.h"
|
||||
#include "llvm/Support/raw_ostream.h"
|
||||
|
@ -16,7 +16,6 @@
|
||||
#include "AlphaRelocations.h"
|
||||
#include "llvm/Function.h"
|
||||
#include "llvm/CodeGen/JITCodeEmitter.h"
|
||||
#include "llvm/Config/alloca.h"
|
||||
#include "llvm/Support/Debug.h"
|
||||
#include "llvm/Support/ErrorHandling.h"
|
||||
#include "llvm/Support/raw_ostream.h"
|
||||
|
@ -16,7 +16,6 @@
|
||||
#include "X86Relocations.h"
|
||||
#include "X86Subtarget.h"
|
||||
#include "llvm/Function.h"
|
||||
#include "llvm/Config/alloca.h"
|
||||
#include "llvm/Support/Compiler.h"
|
||||
#include "llvm/Support/ErrorHandling.h"
|
||||
#include <cstdlib>
|
||||
|
Loading…
Reference in New Issue
Block a user