commit | 8bafe4b9426fc14e37f52b5ca589c636e4662012 | [log] [tgz] |
---|---|---|
author | Artyom Skrobov <Artyom.Skrobov@arm.com> | Thu Jun 12 16:07:56 2014 +0000 |
committer | Artyom Skrobov <Artyom.Skrobov@arm.com> | Thu Jun 12 16:07:56 2014 +0000 |
tree | 6741051e6e2f71141fd393d81aeda3ac4e750c9f | |
parent | 0921f6bdb85e4e6ae15f2c0bbd41a45e4f8f66dd [diff] [blame] |
adding re-include guards into lib/Support/reg*.h llvm-svn: 210794
diff --git a/llvm/lib/Support/regcname.h b/llvm/lib/Support/regcname.h index 3c0bb24..891d255 100644 --- a/llvm/lib/Support/regcname.h +++ b/llvm/lib/Support/regcname.h
@@ -35,6 +35,9 @@ * @(#)cname.h 8.3 (Berkeley) 3/20/94 */ +#ifndef LLVM_SUPPORT_REGCNAME_H +#define LLVM_SUPPORT_REGCNAME_H + /* character-name table */ static struct cname { const char *name; @@ -137,3 +140,5 @@ { "DEL", '\177' }, { NULL, 0 } }; + +#endif