diff options
author | Chris Lattner <sabre@nondot.org> | 2002-03-15 20:21:29 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-03-15 20:21:29 +0000 |
commit | 9b638019ca8870f418e3b42b39dd34dc7deebb2d (patch) | |
tree | 353565e685f75a02eed4bd98e13998e50093d865 /lib/Transforms/Utils/Linker.cpp | |
parent | 2b72c360bb644ac5f3ffbc2063cbfd167a464d2a (diff) |
Cleanup error message output a bit
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1879 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/Utils/Linker.cpp')
-rw-r--r-- | lib/Transforms/Utils/Linker.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Transforms/Utils/Linker.cpp b/lib/Transforms/Utils/Linker.cpp index f265bb05d1..c98295cc66 100644 --- a/lib/Transforms/Utils/Linker.cpp +++ b/lib/Transforms/Utils/Linker.cpp @@ -61,7 +61,7 @@ static bool LinkTypes(Module *Dest, const Module *Src, string *Err = 0) { if (Entry != RHS) // If it's the same, noop. Otherwise, error. return Error(Err, "Type named '" + Name + "' of different shape in modules.\n Src='" + - Entry->getDescription() + "'. Dest='" + + Entry->getDescription() + "'.\n Dst='" + RHS->getDescription() + "'"); } else { // Type not in dest module. Add it now. // TODO: FIXME WHEN TYPES AREN'T CONST |