From 15f6250bed38e3dd39036daff4a318dd6512959d Mon Sep 17 00:00:00 2001 From: "Kazushi (Jam) Marukawa" Date: Mon, 26 Oct 2020 18:03:43 +0900 Subject: [PATCH] [VE][NFC] Fix typo in comment --- llvm/lib/Target/VE/VEISelLowering.cpp | 2 +- llvm/lib/Target/VE/VEInstrInfo.td | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/llvm/lib/Target/VE/VEISelLowering.cpp b/llvm/lib/Target/VE/VEISelLowering.cpp index 9b360d9..e4e396d 100644 --- a/llvm/lib/Target/VE/VEISelLowering.cpp +++ b/llvm/lib/Target/VE/VEISelLowering.cpp @@ -964,7 +964,7 @@ SDValue VETargetLowering::makeAddress(SDValue Op, SelectionDAG &DAG) const { /// Custom Lower { -// The mappings for emitLeading/TrailingFence for VE is designed by folling +// The mappings for emitLeading/TrailingFence for VE is designed by following // http://www.cl.cam.ac.uk/~pes20/cpp/cpp0xmappings.html Instruction *VETargetLowering::emitLeadingFence(IRBuilder<> &Builder, Instruction *Inst, diff --git a/llvm/lib/Target/VE/VEInstrInfo.td b/llvm/lib/Target/VE/VEInstrInfo.td index efdf3b9..2c0678e 100644 --- a/llvm/lib/Target/VE/VEInstrInfo.td +++ b/llvm/lib/Target/VE/VEInstrInfo.td @@ -778,10 +778,10 @@ multiclass BCbpfm opc, dag cond, let bpf = 0 /* NONE */ in def "" : CF; - let bpf = 2 /* NOT TaKEN */ in + let bpf = 2 /* NOT TAKEN */ in def _nt : CF; - let bpf = 3 /* TaKEN */ in + let bpf = 3 /* TAKEN */ in def _t : CF; } @@ -810,10 +810,10 @@ multiclass BCRbpfm opc, dag cond> { let bpf = 0 /* NONE */ in def "" : CF; - let bpf = 2 /* NOT TaKEN */ in + let bpf = 2 /* NOT TAKEN */ in def _nt : CF; - let bpf = 3 /* TaKEN */ in + let bpf = 3 /* TAKEN */ in def _t : CF; } -- 2.7.4