aboutsummaryrefslogtreecommitdiffstats
path: root/tools/llvm-upgrade/UpgradeLexer.l
diff options
context:
space:
mode:
Diffstat (limited to 'tools/llvm-upgrade/UpgradeLexer.l')
-rw-r--r--tools/llvm-upgrade/UpgradeLexer.l12
1 files changed, 12 insertions, 0 deletions
diff --git a/tools/llvm-upgrade/UpgradeLexer.l b/tools/llvm-upgrade/UpgradeLexer.l
index b3e1264..867041d 100644
--- a/tools/llvm-upgrade/UpgradeLexer.l
+++ b/tools/llvm-upgrade/UpgradeLexer.l
@@ -184,6 +184,18 @@ setge { RET_TOK( SETGE); }
phi { RET_TOK( PHI_TOK); }
call { RET_TOK( CALL); }
cast { RET_TOK( CAST); }
+trunc { RET_TOK( TRUNC); }
+zext { RET_TOK( ZEXT); }
+sext { RET_TOK( SEXT); }
+fptrunc { RET_TOK( FPTRUNC); }
+fpext { RET_TOK( FPEXT); }
+fptoui { RET_TOK( FPTOUI); }
+fptosi { RET_TOK( FPTOSI); }
+uitofp { RET_TOK( UITOFP); }
+sitofp { RET_TOK( SITOFP); }
+ptrtoint { RET_TOK( PTRTOINT); }
+inttoptr { RET_TOK( INTTOPTR); }
+bitcast { RET_TOK( BITCAST); }
select { RET_TOK( SELECT); }
shl { RET_TOK( SHL); }
shr { RET_TOK( SHR); }