Remove unnecessary space.

llvm-svn: 137041
This commit is contained in:
Bill Wendling 2011-08-08 08:02:48 +00:00
parent a503fc0494
commit e632cb3600
1 changed files with 1 additions and 1 deletions

View File

@ -1361,7 +1361,7 @@ void Verifier::visitFenceInst(FenceInst &FI) {
Assert1(Ordering == Acquire || Ordering == Release ||
Ordering == AcquireRelease || Ordering == SequentiallyConsistent,
"fence instructions may only have "
" acquire, release, acq_rel, or seq_cst ordering.", &FI);
"acquire, release, acq_rel, or seq_cst ordering.", &FI);
visitInstruction(FI);
}