[llvm] 8b9bf3a - [InlineAsm] fix botched merge conflict resolution

Nick Desaulniers via llvm-commits llvm-commits at lists.llvm.org
Wed Sep 13 09:18:49 PDT 2023


Author: Nick Desaulniers
Date: 2023-09-13T09:18:42-07:00
New Revision: 8b9bf3a9f715ee5dce96eb1194441850c3663da1

URL: https://github.com/llvm/llvm-project/commit/8b9bf3a9f715ee5dce96eb1194441850c3663da1
DIFF: https://github.com/llvm/llvm-project/commit/8b9bf3a9f715ee5dce96eb1194441850c3663da1.diff

LOG: [InlineAsm] fix botched merge conflict resolution

Link: #66003

Added: 
    

Modified: 
    llvm/include/llvm/IR/InlineAsm.h

Removed: 
    


################################################################################
diff  --git a/llvm/include/llvm/IR/InlineAsm.h b/llvm/include/llvm/IR/InlineAsm.h
index 1df74bb28406b45..224aef31807a454 100644
--- a/llvm/include/llvm/IR/InlineAsm.h
+++ b/llvm/include/llvm/IR/InlineAsm.h
@@ -457,7 +457,7 @@ class InlineAsm final : public Value {
       return "o";
     case ConstraintCode::v:
       return "v";
-    case InlineAsm::Constraint::A:
+    case ConstraintCode::A:
       return "A";
     case ConstraintCode::Q:
       return "Q";


        


More information about the llvm-commits mailing list