diff options
author | Bob Wilson <bob.wilson@apple.com> | 2009-07-09 23:42:59 +0000 |
---|---|---|
committer | Bob Wilson <bob.wilson@apple.com> | 2009-07-09 23:42:59 +0000 |
commit | f76798769fcd60f87839d88035e838b95074e16a (patch) | |
tree | dcd4b52691ed4075b5275d944e58241e2c816459 | |
parent | ae4f2e142a3c2f6d950e4797aa61d7093772935d (diff) | |
download | bcm5719-llvm-f76798769fcd60f87839d88035e838b95074e16a.tar.gz bcm5719-llvm-f76798769fcd60f87839d88035e838b95074e16a.zip |
Fix an apparent copy-and-paste problem in an error message.
llvm-svn: 75197
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuild.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuild.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuild.cpp index 9729f95a590..391cf17fa13 100644 --- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuild.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuild.cpp @@ -5321,7 +5321,7 @@ void SelectionDAGLowering::visitInlineAsm(CallSite CS) { // Copy the input into the appropriate registers. if (OpInfo.AssignedRegs.Regs.empty()) { - cerr << "llvm: error: Couldn't allocate output reg for constraint '" + cerr << "llvm: error: Couldn't allocate input reg for constraint '" << OpInfo.ConstraintCode << "'!\n"; exit(1); } |