Put quotes around #error string.

GCC reports "missing terminating ' character", even when it's being
skipped by preprocessing.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@265590 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
James Y Knight 2016-04-06 19:52:32 +00:00
parent ea7a0c0467
commit 0cfb927e93

View File

@ -21,7 +21,7 @@
using namespace llvm;
#ifndef LLVM_BUILD_GLOBAL_ISEL
#error You shouldn't build this
#error "You shouldn't build this"
#endif
AArch64RegisterBankInfo::AArch64RegisterBankInfo(const TargetRegisterInfo &TRI)