Fix an accidental commit.

llvm-svn: 40758
This commit is contained in:
Chris Lattner 2007-08-02 21:33:36 +00:00
parent 5f6a9da530
commit 1f70816c73
1 changed files with 1 additions and 1 deletions

View File

@ -50,7 +50,7 @@ namespace {
static char ID; // Pass identification, replacement for typeid
explicit SROA(signed T = -1) : FunctionPass((intptr_t)&ID) {
if (T == -1)
SRThreshold = 512;
SRThreshold = 128;
else
SRThreshold = T;
}